@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --ink: #0b1f18;
  --muted: #5e6b64;
  --green: #005fae;
  --green-2: #0b7ed8;
  --gold: #d49a22;
  --paper: #f3f7fc;
  --line: #d8e4f0;
  --white: #fff;
  --shadow: 0 24px 60px rgba(11, 31, 24, .16);
  --font-heading: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.primary-nav,
.nav-cta,
.market-company,
.market-pill,
.button,
.eyebrow {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: 50px;
  font-weight: 800;
}

h2 {
  font-size: 36px;
  font-weight: 800;
}

h3 {
  font-size: 26px;
  font-weight: 700;
}

h4 {
  font-size: 21px;
  font-weight: 700;
}

p,
li,
td,
th {
  font-size: 16px;
}

small,
.caption,
.eyebrow,
.market-pill,
.market-company,
.utility-bar {
  font-size: 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 228, 215, .9);
  backdrop-filter: blur(18px);
}

.utility-bar {
  position: absolute;
  top: 12px;
  right: max(28px, calc((100vw - 1320px) / 2));
  left: max(230px, calc((100vw - 1320px) / 2 + 210px));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-height: 28px;
  padding: 0;
  color: #4f6271;
  background: transparent;
  font-size: 13px;
  border-bottom: 0;
  white-space: nowrap;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  color: var(--ink);
  background: #eef6ff;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  font-size: 12px;
}

.market-company {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
}

.market-pill span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .06em;
}

.market-pill strong {
  font-weight: 900;
}

.market-pill em {
  color: #b33c2e;
  font-style: normal;
  font-weight: 900;
}

.utility-bar a:hover,
.primary-nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-shell {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  max-width: 1320px;
  min-height: 92px;
  margin: 0 auto;
  padding: 8px 28px 10px;
}

.brand img {
  width: 132px;
  height: auto;
}

.primary-nav {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  transform: translateY(16px);
  color: #12385f;
  font-size: 15px;
  user-select: none;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta {
  align-self: end;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 46px rgba(11, 31, 24, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-wide {
  min-width: 280px;
}

.nav-dropdown a {
  padding: 12px 14px;
  color: #12385f;
  border-radius: 6px;
  text-transform: none;
}

.nav-dropdown a:hover {
  background: var(--paper);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-cta {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 24, 49, .95), rgba(5, 24, 49, .72) 42%, rgba(5, 24, 49, .2)),
    linear-gradient(0deg, rgba(5, 24, 49, .74), rgba(5, 24, 49, 0) 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 72px 28px 88px;
  margin-left: max(28px, calc((100vw - 1320px) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.02em;
}

h1 {
  max-width: 760px;
  font-size: 50px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  color: var(--white);
  background: var(--green-2);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 31, 24, .12);
}

.hero-panel {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 96px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  width: min(720px, calc(100vw - 56px));
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-panel div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.sub-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #071f3d;
}

.sub-hero-media {
  position: absolute;
  inset: 0;
}

.sub-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 24, 49, .96), rgba(5, 24, 49, .72) 46%, rgba(5, 24, 49, .18)),
    linear-gradient(0deg, rgba(5, 24, 49, .7), rgba(5, 24, 49, 0) 55%);
}

.sub-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 118px 28px 190px;
  margin-left: max(28px, calc((100vw - 1320px) / 2));
}

.breadcrumb {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.sub-hero h1 {
  max-width: 720px;
  font-size: 50px;
}

.sub-hero-content > p:last-of-type {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.sub-hero-stats {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(640px, calc(100vw - 56px));
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.sub-hero-stats div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.sub-hero-stats div:last-child {
  border-right: 0;
}

.sub-hero-stats strong {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.sub-hero-stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.investor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  padding: 96px max(28px, calc((100vw - 1320px) / 2)) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 24, 49, .96), rgba(5, 24, 49, .82)),
    url("assets/images/hero-chicks.jpg") center / cover;
}

.investor-hero h1 {
  max-width: 840px;
  font-size: 50px;
}

.investor-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.breadcrumb {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.investor-quick-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.investor-quick-panel span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.investor-quick-panel strong {
  font-size: 22px;
  line-height: 1.15;
}

.investor-quick-panel small {
  color: var(--muted);
  font-size: 13px;
}

.share-price-panel em {
  color: #b33c2e;
  font-style: normal;
}

.investor-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.investor-tabs a {
  padding: 22px 28px;
  color: #12385f;
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.investor-tabs a.active,
.investor-tabs a:hover {
  color: var(--white);
  background: var(--green);
}

.investor-overview,
.governance-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.investor-overview article,
.governance-dashboard article {
  min-height: 220px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.investor-overview span,
.governance-dashboard span,
.doc-year h3 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.investor-overview h2,
.governance-dashboard strong {
  display: block;
  margin-top: 12px;
  color: #12385f;
  font-size: 28px;
  line-height: 1.1;
}

.investor-overview p,
.governance-dashboard p {
  color: var(--muted);
}

.document-section {
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
}

.document-section:nth-of-type(even) {
  background: var(--paper);
}

.doc-year-grid,
.communication-grid,
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.doc-year,
.committee-grid article,
.share-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.doc-year h3,
.committee-grid h3 {
  margin: 0 0 8px;
}

.doc-year a,
.doc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 11px 0;
  color: #12385f;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.doc-year a::after,
.doc-list a::after {
  content: "PDF";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.doc-year span {
  color: var(--muted);
}

.compact-docs {
  background: var(--white);
}

.doc-list {
  display: grid;
  gap: 0;
}

.doc-list.two-column {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.empty-state {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 24px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed #b9cde1;
}

.empty-state strong {
  color: #12385f;
}

.governance-table-section {
  background: var(--paper);
}

.responsive-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

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

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #12385f;
  background: #eef6ff;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-weight: 700;
}

.committee-grid article p {
  color: var(--muted);
}

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

.share-card {
  min-height: 340px;
  padding: 34px;
}

.share-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.investor-footer .footer-quicklinks {
  padding-top: 54px;
}

.ticker-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker-band a {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
}

.ticker-band a::after,
.text-link::after {
  content: " →";
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1.1fr;
  gap: 70px;
  align-items: start;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) 1.15fr;
  gap: 70px;
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 900;
}

.dark-section {
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: #071f3d;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.business-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0f3158;
}

.business-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .8;
  transition: transform .5s ease;
}

.business-card:hover img {
  transform: scale(1.05);
}

.business-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 24, 49, .88), rgba(5, 24, 49, .08));
}

.business-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
}

.business-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.business-card p {
  color: rgba(255, 255, 255, .78);
}

.product-portfolio {
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
  background: var(--paper);
}

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

.product-card {
  display: grid;
  min-height: 390px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: #9ec8ee;
  box-shadow: 0 18px 40px rgba(7, 31, 61, .12);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 14px;
  background: #f7fbff;
}

.product-card span {
  margin-top: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.product-card h3 {
  margin-top: 8px;
  color: #12385f;
  font-size: 22px;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.featured-product {
  color: var(--white);
  background: #071f3d;
  border-color: #071f3d;
}

.featured-product img {
  background: rgba(255, 255, 255, .08);
}

.featured-product h3 {
  color: var(--white);
}

.featured-product p {
  color: rgba(255, 255, 255, .74);
}

.ahp-catalogue {
  background: var(--paper);
}

.catalogue-heading {
  align-items: end;
  gap: 28px;
}

.catalogue-trail {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: #38536a;
  font-size: 14px;
}

.catalogue-trail button,
.catalogue-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font: 700 14px var(--font-body);
  cursor: pointer;
}

.catalogue-grid,
.catalogue-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.catalogue-category-card,
.catalogue-product-card {
  display: grid;
  gap: 16px;
  min-height: 330px;
  padding: 22px;
  color: inherit;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalogue-category-card {
  cursor: pointer;
}

.catalogue-category-card:hover,
.catalogue-product-card:hover,
.catalogue-category-card.is-active {
  border-color: #9ec8ee;
  box-shadow: 0 18px 40px rgba(7, 31, 61, .12);
  transform: translateY(-4px);
}

.catalogue-category-card.is-active {
  color: var(--white);
  background: #071f3d;
  border-color: #071f3d;
}

.catalogue-card-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: #f7fbff;
}

.catalogue-category-card.is-active .catalogue-card-media {
  background: rgba(255, 255, 255, .08);
}

.catalogue-card-media img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 12px;
}

.catalogue-card-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.catalogue-category-card h3,
.catalogue-product-card h4 {
  margin: 0;
  color: #12385f;
}

.catalogue-category-card.is-active h3 {
  color: var(--white);
}

.catalogue-category-card p,
.catalogue-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.catalogue-category-card.is-active p {
  color: rgba(255, 255, 255, .76);
}

.catalogue-products {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.catalogue-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.catalogue-products-head h3 {
  margin: 0 0 10px;
  color: #12385f;
}

.catalogue-products-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.ahp-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px max(28px, calc((100vw - 1320px) / 2));
  background: #edf7ff;
  border-bottom: 1px solid var(--line);
}

.ahp-detail-nav a {
  color: var(--green);
  font-weight: 700;
}

.ahp-support {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.support-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.support-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.support-panel {
  padding: 48px;
  background: var(--paper);
}

.support-panel p {
  color: var(--muted);
  font-size: 16px;
}

.support-list {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.support-list div {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--white);
}

.support-list strong {
  color: #12385f;
  font-size: 16px;
}

.support-list span {
  color: var(--muted);
}

.investor-layout,
.governance-section,
.journey-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.investor-feature,
.governance-card,
.contact-section > div {
  padding: 48px;
  background: var(--paper);
}

.investor-feature p,
.governance-card p,
.journey-section p,
.contact-section p {
  color: var(--muted);
  font-size: 16px;
}

.investor-links {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.investor-links a,
.governance-list div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--white);
}

.investor-links span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.investor-links a {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.governance-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.governance-list strong {
  font-size: 22px;
}

.governance-list span {
  color: var(--muted);
}

.journey-section {
  align-items: center;
}

.founder-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.founder-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.contact-section {
  align-items: center;
}

.contact-section > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mega-footer {
  background: var(--white);
}

.footer-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 28px 56px;
}

.footer-quicklinks a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 28px 26px 28px 34px;
  color: #073765;
  background: #edf7ff;
  border: 1px solid #d2e8f8;
  border-radius: 10px;
  font-size: 21px;
  font-weight: 500;
}

.footer-quicklinks strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--green);
  border: 2px solid var(--green-2);
  border-radius: 999px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  padding: 52px max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: #071f3d;
}

.social-block p {
  margin: 0 0 28px;
  font-size: 21px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  font-size: 34px;
  font-weight: 400;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 58px;
  align-content: start;
}

.footer-columns a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.footer-bluebar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  font-size: 19px;
  font-weight: 400;
}

.footer-bluebar p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 26px max(28px, calc((100vw - 1320px) / 2));
  color: #12385f;
  background: #edf7ff;
  border-top: 1px solid #d2e8f8;
  font-size: 15px;
}

.footer-office p {
  margin: 5px 0;
}

.footer-office a {
  color: #005fae;
  text-decoration: underline;
}

.product-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 560px;
  color: var(--white);
  background: linear-gradient(135deg, #071d35 0%, #0b4f91 100%);
  overflow: hidden;
}

.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(36, 142, 220, .45), transparent 34%);
  pointer-events: none;
}

.product-page-hero .hero-copy-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 110px max(28px, calc((100vw - 1320px) / 2)) 86px;
}

.product-page-hero h1 {
  max-width: 720px;
  margin: 14px 0 22px;
  font-size: 50px;
  line-height: .98;
  letter-spacing: 0;
}

.product-page-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.7;
}

.product-page-hero .hero-image {
  min-height: 560px;
}

.product-page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-hero .hero-image.logo-stage {
  display: grid;
  place-items: center;
  padding: 70px;
  background: #f4faff;
}

.product-page-hero .hero-image.logo-stage img {
  width: min(420px, 78%);
  height: auto;
  object-fit: contain;
}

.product-summary {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  padding: 88px max(28px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

.product-summary h2,
.product-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0;
}

.product-summary p,
.product-section p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.product-section {
  padding: 88px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.product-section.white {
  background: var(--white);
}

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

.product-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(13, 54, 93, .08);
}

.product-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-feature-card div {
  padding: 26px;
}

.product-feature-card span,
.product-stat span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-feature-card h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.product-stat {
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
}

.product-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: 20px 22px;
  color: var(--navy);
  background: var(--white);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.generated-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 420px;
  color: var(--white);
  background: linear-gradient(135deg, #071d35 0%, #0c63ae 100%);
}

.generated-hero-content {
  align-self: center;
  padding: 96px max(28px, calc((100vw - 1320px) / 2)) 72px;
}

.generated-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

.generated-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.7;
}

.generated-hero-media {
  min-height: 420px;
  background: #eaf6ff;
}

.generated-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generated-main {
  padding: 72px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.generated-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.generated-content,
.generated-side {
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(13, 54, 93, .08);
}

.generated-content {
  padding: clamp(28px, 4vw, 52px);
}

.generated-content h1,
.generated-content h2,
.generated-content h3,
.generated-content h4 {
  color: var(--navy);
  letter-spacing: 0;
}

.generated-content h1 {
  font-size: 36px;
}

.generated-content h2 {
  font-size: 26px;
}

.generated-content p,
.generated-content li,
.generated-content td,
.generated-content th {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.generated-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.generated-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
}

.generated-content th,
.generated-content td {
  padding: 14px 16px;
  border: 1px solid var(--pale-line);
  vertical-align: top;
}

.generated-content th {
  color: var(--navy);
  background: var(--pale-blue);
}

.generated-side {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.generated-side h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 22px;
}

.generated-side a {
  display: block;
  padding: 14px 0;
  color: var(--blue);
  border-top: 1px solid var(--pale-line);
  font-weight: 800;
}

.bod-hero {
  position: relative;
  padding: 104px max(28px, calc((100vw - 1320px) / 2)) 86px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 29, 55, .96), rgba(0, 100, 177, .9)),
    url("assets/images/venkys-office.jpg") center/cover;
  overflow: hidden;
}

.bod-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 76px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.bod-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.bod-hero h1 {
  margin: 14px 0 22px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

.bod-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.7;
}

.bod-overview {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding: 76px max(28px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

.bod-overview h2,
.bod-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0;
}

.bod-overview p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.bod-section {
  padding: 76px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.bod-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.bod-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(13, 54, 93, .08);
  overflow: hidden;
}

.bod-photo {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: linear-gradient(135deg, #eef8ff, #ffffff);
}

.bod-photo img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
}

.bod-initials {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--blue);
  font-size: 46px;
  font-weight: 900;
}

.bod-card-content {
  padding: 28px;
}

.bod-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.18;
}

.bod-role {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.bod-card p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

.bod-governance-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.bod-governance-band div {
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
}

.bod-governance-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.journey-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 96px max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: linear-gradient(135deg, #061c34 0%, #0a5c9e 100%);
  overflow: hidden;
}

.journey-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -180px;
  width: 560px;
  height: 560px;
  border: 88px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.journey-hero-content,
.journey-founder {
  position: relative;
  z-index: 1;
}

.journey-hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

.journey-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.7;
}

.journey-founder {
  padding: 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.journey-founder img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.journey-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 56px;
  padding: 76px max(28px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

.journey-intro h2,
.journey-timeline-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0;
}

.journey-intro p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.journey-timeline-section {
  padding: 76px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 74px;
  width: 3px;
  background: linear-gradient(#0b64b1, #f2b544);
  opacity: .5;
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.journey-year {
  position: relative;
  z-index: 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 66px;
  color: #003e75;
  background: #ffffff;
  border: 3px solid #0b64b1;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 79, 145, .18);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(13, 54, 93, .08);
}

.journey-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.18;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.journey-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid var(--pale-line);
  border-radius: 8px;
}

.journey-logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .primary-nav {
    display: none;
  }

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

  .split-section,
  .product-intro,
  .investor-layout,
  .investor-hero,
  .investor-overview,
  .governance-dashboard,
  .governance-section,
  .journey-section,
  .ahp-support,
  .share-layout,
  .contact-section,
  .product-page-hero,
  .product-summary,
  .generated-hero,
  .generated-layout,
  .bod-overview,
  .journey-hero,
  .journey-intro {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-feature-grid,
  .catalogue-grid,
  .catalogue-product-grid,
  .doc-year-grid,
  .communication-grid,
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .utility-bar {
    position: static;
    justify-content: flex-start;
    padding: 8px 22px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 22px;
  }

  .brand img {
    width: 96px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 22px 34px;
    margin: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 22px 28px;
  }

  .sub-hero {
    min-height: auto;
  }

  .sub-hero-content {
    padding: 82px 22px 34px;
    margin: 0;
  }

  .sub-hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 22px 28px;
  }

  .sub-hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker-band,
  .investor-tabs,
  .business-grid,
  .product-grid,
  .catalogue-grid,
  .catalogue-product-grid,
  .doc-year-grid,
  .communication-grid,
  .committee-grid,
  .doc-list.two-column,
  .support-media,
  .product-feature-grid,
  .product-stat-grid,
  .product-list,
  .bod-grid,
  .bod-governance-band {
    grid-template-columns: 1fr;
  }

  .catalogue-heading,
  .catalogue-products-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalogue-trail,
  .catalogue-products-head .text-link {
    justify-content: flex-start;
  }

  .ahp-detail-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .bod-hero {
    padding: 82px 22px 58px;
  }

  .bod-overview,
  .bod-section {
    padding: 58px 22px;
  }

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

  .bod-photo {
    min-height: 320px;
  }

  .journey-hero,
  .journey-intro,
  .journey-timeline-section {
    padding: 58px 22px;
  }

  .journey-founder {
    max-width: 360px;
  }

  .journey-timeline::before {
    left: 44px;
  }

  .journey-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }

  .journey-year {
    min-width: 86px;
    min-height: 54px;
    font-size: 17px;
  }

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

  .product-page-hero .hero-copy-panel {
    padding: 82px 22px 40px;
  }

  .product-page-hero .hero-image {
    min-height: 320px;
  }

  .generated-hero-content,
  .generated-main {
    padding-inline: 22px;
  }

  .generated-hero-media {
    min-height: 280px;
  }

  .investor-hero {
    padding: 82px 22px 46px;
  }

  .investor-tabs a {
    padding: 16px 22px;
  }

  .section {
    padding: 64px 22px;
  }

  .investor-feature,
  .governance-card,
  .support-panel,
  .contact-section > div {
    padding: 28px;
  }

  .founder-images {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 22px;
  }

  .footer-quicklinks,
  .footer-main,
  .footer-bluebar,
  .footer-office {
    grid-template-columns: 1fr;
  }

  .footer-quicklinks {
    padding: 42px 22px;
    gap: 16px;
  }

  .footer-main,
  .footer-bluebar,
  .footer-office {
    padding-inline: 22px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bluebar {
    flex-direction: column;
  }

  .footer-tabs {
    gap: 18px;
  }
}

.primary-nav a,
.nav-cta,
.market-pill {
  -webkit-tap-highlight-color: transparent;
}

.primary-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
}

.primary-nav > a::selection,
.nav-item > a::selection {
  background: transparent;
}

body,
p,
li,
td,
th {
  font-family: var(--font-body);
}

body h1,
body h2,
body h3,
body h4,
body .primary-nav,
body .nav-cta,
body .button,
body .eyebrow,
body .market-company,
body .market-pill {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

body h1,
.hero-content h1,
.sub-hero-content h1,
.investor-hero h1,
.product-page-hero h1,
.generated-hero h1,
.bod-hero h1,
.journey-hero h1 {
  font-size: 50px;
  line-height: 1.12;
}

body h2,
.section-heading h2,
.product-summary h2,
.product-section h2,
.generated-content h2,
.bod-section h2,
.journey-intro h2,
.journey-timeline-section h2 {
  font-size: 36px;
  line-height: 1.14;
}

body h3,
.business-card h3,
.product-feature-card h3,
.bod-card h3,
.journey-card h3 {
  font-size: 26px;
  line-height: 1.18;
}

body h4 {
  font-size: 21px;
  line-height: 1.22;
}

@media (max-width: 720px) {
  body h1,
  .hero-content h1,
  .sub-hero-content h1,
  .investor-hero h1,
  .product-page-hero h1,
  .generated-hero h1,
  .bod-hero h1,
  .journey-hero h1 {
    font-size: 36px;
  }

  body h2,
  .section-heading h2,
  .product-summary h2,
  .product-section h2,
  .generated-content h2,
  .bod-section h2,
  .journey-intro h2,
  .journey-timeline-section h2 {
    font-size: 34px;
  }

  body h3,
  .business-card h3,
  .product-feature-card h3,
  .bod-card h3,
  .journey-card h3 {
    font-size: 28px;
  }
}
/* Requested compact corporate typography scale */
body { font-size: 16px; }
body h1, .hero-content h1, .sub-hero-content h1, .investor-hero h1, .product-page-hero h1, .generated-hero h1, .bod-hero h1, .journey-hero h1 { font-size: 50px; }
body h2, .section-heading h2, .product-summary h2, .product-section h2, .generated-content h2, .bod-section h2, .journey-intro h2, .journey-timeline-section h2 { font-size: 36px; }
body h3, .business-card h3, .product-feature-card h3, .bod-card h3, .journey-card h3 { font-size: 26px; }
body h4 { font-size: 21px; }
p, li, td, th, .generated-content p, .generated-content li, .generated-content td, .generated-content th { font-size: 16px; }
small, .caption, .eyebrow, .market-pill, .market-company, .utility-bar { font-size: 14px; }
@media (max-width: 720px) {
  body h1, .hero-content h1, .sub-hero-content h1, .investor-hero h1, .product-page-hero h1, .generated-hero h1, .bod-hero h1, .journey-hero h1 { font-size: 38px; }
  body h2, .section-heading h2, .product-summary h2, .product-section h2, .generated-content h2, .bod-section h2, .journey-intro h2, .journey-timeline-section h2 { font-size: 30px; }
  body h3, .business-card h3, .product-feature-card h3, .bod-card h3, .journey-card h3 { font-size: 24px; }
}

/* Compact product heroes and lighter footer typography */
.product-page-hero {
  display: block;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(7, 31, 61, .96), rgba(0, 95, 174, .86));
}

.product-page-hero .hero-copy-panel {
  max-width: 920px;
  padding: 74px max(28px, calc((100vw - 1320px) / 2)) 60px;
}

.product-page-hero .hero-image {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: .2;
  pointer-events: none;
}

.product-page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.product-page-hero .hero-image.logo-stage {
  padding: 0;
  background: transparent;
}

.product-summary {
  grid-template-columns: 1fr;
  gap: 24px;
}

.generated-hero {
  display: block;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.generated-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 74px max(28px, calc((100vw - 1320px) / 2)) 58px;
}

.generated-hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: .16;
  pointer-events: none;
}

.generated-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.footer-quicklinks a,
.social-block p,
.social-icons a,
.footer-columns a,
.footer-tabs,
.footer-bluebar p,
.footer-office,
.footer-office strong {
  font-weight: 400;
}

@media (max-width: 720px) {
  .product-page-hero {
    min-height: 300px;
  }

  .product-page-hero .hero-copy-panel {
    padding: 54px 22px 44px;
  }

  .generated-hero {
    min-height: 280px;
  }

  .generated-hero-content {
    padding: 54px 22px 44px;
  }
}

/* Quiet interaction polish */
a,
button,
.button,
.nav-cta,
.product-links a,
.investor-tabs a,
.footer-quicklinks a,
.business-card,
.product-card,
.catalogue-category-card,
.catalogue-product-card,
.product-feature-card,
.investor-links a,
.share-card,
.bod-card,
.journey-card {
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

a {
  cursor: pointer;
}

.button:hover,
.nav-cta:hover,
.product-links a:hover,
.investor-tabs a:hover,
.investor-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 49, 92, .14);
}

.button-primary:hover,
.nav-cta:hover {
  background: #084b8c;
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.business-card:hover,
.product-card:hover,
.catalogue-category-card:hover,
.catalogue-product-card:hover,
.product-feature-card:hover,
.share-card:hover,
.bod-card:hover,
.journey-card:hover,
.footer-quicklinks a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(7, 38, 78, .12);
}

.business-card:hover img,
.product-card:hover img,
.product-feature-card:hover img,
.catalogue-card-media img:hover {
  opacity: .95;
}

.footer-quicklinks a:hover strong {
  transform: translateX(4px);
}

.button:focus-visible,
.nav-cta:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 102, 179, .28);
  outline-offset: 4px;
}

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

.hero-content,
.sub-hero-content,
.investor-hero,
.product-page-hero .hero-copy-panel,
.generated-hero-content,
.business-card,
.product-card,
.service-card,
.product-feature-card,
.footer-quicklinks a {
  animation: quietFadeUp .7s ease both;
}

.business-card:nth-child(2),
.product-card:nth-child(2),
.footer-quicklinks a:nth-child(2) {
  animation-delay: .06s;
}

.business-card:nth-child(3),
.product-card:nth-child(3),
.footer-quicklinks a:nth-child(3) {
  animation-delay: .12s;
}

.business-card:nth-child(4),
.product-card:nth-child(4),
.footer-quicklinks a:nth-child(4) {
  animation-delay: .18s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}


/* Shubham CSS */
.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 20px;
  background: var(--green);
  opacity: 1;
}

@media (max-width: 991px) {
  .heroSwiper h1 {
    font-size: 2.5rem;
  }

  .heroSwiper .vh-100 {
    height: 50vh !important;
  }
}


.venkys-logo{
    background-image: 
      url('./assets/images/poultryfarm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.board-director {
  transition: 0.35s;
}

.board-director:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12) !important;
}

/* Custom Financial Tabs */
.custom-fin-tabs .nav-link {
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: #fff;
  color: #212529;
  font-weight: 600;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.custom-fin-tabs .nav-link:hover {
  border-color: var(--green);
  color: var(--gold);
  background: #f8fbff;
}

.custom-fin-tabs .nav-link.active,
.custom-fin-tabs .show > .nav-link {
  background: var(--green) !important;
  color: #fff !important;
  border-color: var(--green) !important;
  box-shadow: none;
}

.custom-fin-tabs .nav-link:focus,
.custom-fin-tabs .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.custom-fin-tabs .nav-link:not(.active) {
  background: #fff;
}


.custom-year-tabs .nav-link{
    color:var(--blue);
    border:1px solid #dee2e6;
    background:#fff;
    transition:0.3s;
}

.custom-year-tabs .nav-link:hover{
    border-color:var(--green);
    color:var(--gold);
}

.custom-year-tabs .nav-link.active{
    color:var(--green) !important;
    background:#fff !important;
    border:2px solid var(--gold) !important;
    font-weight:600;
}

.custom-year-tabs .nav-link:focus{
    box-shadow:none;
}


.custom-fin-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-fin-tabs .nav-item {
    flex: 0 0 16.66%; /* 6 items per row */
    max-width: 16.66%;
}

.custom-fin-tabs .nav-link {
    width: 100%;
    text-align: center;
    border-radius: 50rem;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .custom-fin-tabs .nav-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767.98px) {
    .custom-fin-tabs .nav-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}