:root {
  --ink: #101b18;
  --muted: #66716d;
  --green: #0b7a5c;
  --green-dark: #075c46;
  --mint: #dff4eb;
  --paper: #f7f9f8;
  --white: #fff;
  --line: #dfe6e2;
  --soft: #eef3f0;
  --dark: #0c1714;
  --shadow: 0 24px 70px rgba(16, 27, 24, 0.12);
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 24px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--dark);
  color: #fff;
}
.skip-link:focus {
  top: 18px;
}
.utility-bar {
  height: 36px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #73807b;
}
.utility-inner div {
  display: flex;
  gap: 24px;
  align-items: center;
}
.utility-inner button {
  border: 0;
  background: none;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: 0.25s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 40, 33, 0.05);
}
.header-inner {
  height: 82px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  letter-spacing: 0.13em;
}
.brand small {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #74807c;
}
.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 11px);
  grid-template-rows: repeat(2, 11px);
  gap: 3px;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}
.brand-mark i {
  display: block;
  border-radius: 3px;
  background: var(--green);
}
.brand-mark i:nth-child(2) {
  opacity: 0.35;
}
.brand-mark i:nth-child(3) {
  opacity: 0.58;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.desktop-nav a {
  position: relative;
  padding: 30px 0;
  font-size: 12px;
  font-weight: 700;
  color: #3e4d47;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--green);
  transition: 0.25s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-contact {
  font-size: 12px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}
.button span {
  font-size: 16px;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: var(--green);
}
.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(11, 122, 92, 0.22);
}
.button-secondary {
  border-color: #cfd9d4;
  background: #fff;
}
.button-dark {
  color: #fff;
  background: var(--dark);
}
.button-light {
  color: var(--dark);
  background: #fff;
}
.button-compact {
  min-height: 44px;
  padding-inline: 18px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink);
}
.mobile-menu {
  display: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
}
.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: var(--green);
}
.soft-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f4f8f6 62%, #eaf4ef 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 80, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 80, 61, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, #000 38%, #000);
}
.home-hero-layout {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 76px;
  padding: 74px 0 84px;
}
.home-hero-copy h1,
.page-hero h1,
.simple-hero h1,
.quote-copy h1 {
  margin: 20px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.home-hero-copy h1 em {
  color: var(--green);
  font-style: normal;
}
.home-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid #d9e3de;
}
.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-facts strong {
  font-size: 17px;
}
.hero-facts span {
  max-width: 160px;
  color: #75807c;
  font-size: 10px;
  line-height: 1.45;
}
.home-hero-visual {
  position: relative;
  min-height: 500px;
}
.hero-image-card {
  position: absolute;
  inset: 26px 20px 24px 46px;
  padding: 12px;
  border: 1px solid #d5e0da;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-image-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.image-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 15px;
  color: #fff;
  background: rgba(9, 25, 20, 0.72);
  backdrop-filter: blur(12px);
}
.image-caption span {
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.image-caption strong {
  max-width: 220px;
  text-align: right;
  font-size: 13px;
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 180px;
  padding: 16px 18px;
  border: 1px solid #d8e3dd;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 50, 40, 0.13);
}
.floating-card span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.floating-card strong {
  font-size: 12px;
}
.card-a {
  left: 0;
  top: 68px;
}
.card-b {
  right: 0;
  bottom: 54px;
}
.logo-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.logo-band > .shell {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.logo-band p {
  min-width: 175px;
  color: #7b8581;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
.logo-band div div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  flex: 1;
  color: #74807b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.section {
  padding: 118px 0;
}
.muted-section {
  background: var(--paper);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 52px;
}
.section-heading h2,
.project-feature-copy h2,
.cta-panel h2,
.contact-strip h2,
.answer-grid h2 {
  margin: 17px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
}
.gateway-card {
  grid-column: span 6;
  min-height: 244px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 25px;
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.gateway-card:nth-child(even) {
  border-right: 0;
}
.gateway-card:hover {
  background: var(--paper);
}
.gateway-number {
  color: #87928d;
  font-size: 10px;
  font-weight: 800;
}
.gateway-card p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.gateway-card h3 {
  margin: 0 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
}
.gateway-card div > span {
  display: block;
  max-width: 450px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.gateway-card b {
  font-size: 20px;
  font-weight: 400;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.industry-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background-image:
    linear-gradient(to top, rgba(5, 17, 13, 0.86), rgba(5, 17, 13, 0.1)),
    var(--card-image);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 22, 0.15);
  transition: 0.3s;
}
.industry-card:hover:after {
  background: rgba(5, 30, 22, 0.04);
}
.industry-card > * {
  position: relative;
  z-index: 2;
}
.industry-card span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 700;
}
.industry-card p {
  max-width: 430px;
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.65;
}
.industry-card b {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.inline-link {
  font-size: 11px;
  font-weight: 800;
}
.project-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}
.project-feature-image {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  transform: rotate(-1deg);
}
.project-feature-image img {
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
}
.project-feature-copy p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.project-feature-copy ul {
  display: grid;
  gap: 13px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.project-feature-copy li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
  font-weight: 800;
}
.home-cta {
  padding: 0 0 100px;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 58px 64px;
  border-radius: 30px;
  color: #fff;
  background: var(--green);
}
.cta-panel span,
.contact-strip span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.68);
}
.cta-panel h2 {
  max-width: 740px;
  font-size: 44px;
}
.page-hero {
  padding: 58px 0 82px;
  background: linear-gradient(145deg, #fff, #f1f7f4);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  color: #7b8681;
  font-size: 10px;
}
.breadcrumbs a:hover {
  color: var(--green);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 78px;
}
.page-hero h1 {
  font-size: clamp(54px, 6.5vw, 88px);
}
.page-hero-grid > div:first-child > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.page-hero-image {
  position: relative;
  padding: 10px;
  border: 1px solid #d8e2dd;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.page-hero-image img {
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
}
.page-hero-image > span {
  position: absolute;
  left: 28px;
  bottom: 27px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 20, 15, 0.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.anchor-bar {
  position: sticky;
  top: 82px;
  z-index: 35;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
}
.anchor-bar .shell {
  display: flex;
  gap: 34px;
  overflow: auto;
}
.anchor-bar a {
  padding: 17px 0;
  white-space: nowrap;
  color: #66716c;
  font-size: 10px;
  font-weight: 800;
}
.content-two-col {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 85px;
}
.content-two-col aside span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}
.content-two-col aside h2 {
  margin: 14px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}
.prose > h2 {
  max-width: 820px;
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.prose > p,
.answer-grid p {
  max-width: 860px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.definition-box {
  margin-top: 38px;
  padding: 28px;
  border-left: 3px solid var(--green);
  background: var(--paper);
}
.definition-box strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.definition-box p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
}
.feature-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}
.feature-list li:before {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 13px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
}
.info-panel {
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background: var(--dark);
}
.info-panel span {
  color: #8ccab8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.info-panel h3 {
  margin: 17px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1.15;
}
.info-panel p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.8;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.use-case-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.use-case-grid article > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.use-case-grid h3 {
  margin: 42px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}
.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.seo-answer-section {
  color: #fff;
  background: var(--dark);
}
.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.answer-grid h2 {
  font-size: 45px;
}
.answer-grid p {
  color: rgba(255, 255, 255, 0.62);
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}
.faq-list summary span {
  color: var(--green);
}
.faq-list details p {
  max-width: 850px;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.related-section {
  padding: 58px 0;
  background: var(--paper);
}
.related-section > .shell {
  display: flex;
  align-items: center;
  gap: 50px;
}
.related-section > .shell > span {
  min-width: 180px;
  color: #74807b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.related-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.related-links a {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}
.contact-strip {
  padding: 72px 0;
  color: #fff;
  background: var(--green);
}
.contact-strip > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.contact-strip h2 {
  max-width: 730px;
  font-size: 43px;
}
.simple-hero {
  padding: 72px 0 86px;
  background: linear-gradient(145deg, #fff, #f2f7f4);
}
.simple-hero h1 {
  font-size: clamp(58px, 7vw, 96px);
}
.simple-hero > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.simple-hero-visual {
  aspect-ratio: 2.2 / 1;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid #d8e2dd;
  border-radius: 26px;
  background: #e9f0ed;
  box-shadow: var(--shadow);
}
.simple-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.simple-hero.compact h1 {
  font-size: 68px;
}
.sector-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sector-index-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: 0.25s;
}
.sector-index-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.sector-index-card img {
  height: 300px;
  object-fit: cover;
}
.sector-index-card div {
  padding: 30px;
}
.sector-index-card span,
.project-card span,
.insight-card > span,
.contact-card > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.sector-index-card h2 {
  margin: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
}
.sector-index-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.sector-index-card b {
  display: block;
  margin-top: 20px;
  font-size: 10px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.project-card img {
  height: 340px;
  object-fit: cover;
}
.project-card div {
  padding: 28px;
}
.project-card h2 {
  margin: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 31px;
}
.project-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.project-card a {
  display: block;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.insight-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.insight-card-media {
  aspect-ratio: 1.7 / 1;
  margin: -34px -34px 28px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #e9f0ed;
}
.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.insight-card:hover .insight-card-media img {
  transform: scale(1.035);
}
.insight-card h2 {
  margin: 18px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1.2;
}
.insight-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.insight-card a {
  display: block;
  margin-top: 30px;
  font-size: 10px;
  font-weight: 800;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.metric-grid div {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.metric-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}
.metric-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.contact-card h2 {
  margin: 55px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
}
.contact-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.contact-card .button {
  margin-top: 20px;
}
.quote-page {
  min-height: calc(100vh - 36px);
  padding: 70px 0 100px;
  background: linear-gradient(135deg, #f3f8f5, #fff);
}
.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: start;
}
.back-link {
  display: block;
  margin-bottom: 72px;
  color: #6e7a75;
  font-size: 11px;
  font-weight: 700;
}
.quote-copy h1 {
  font-size: 63px;
}
.quote-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.quote-context-visual {
  aspect-ratio: 1.65 / 1;
  margin: 28px 0 30px;
  overflow: hidden;
  border: 1px solid #d8e2dd;
  border-radius: 20px;
  background: #e9f0ed;
  box-shadow: 0 18px 45px rgba(16, 27, 24, 0.1);
}
.quote-context-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-copy ul {
  display: grid;
  gap: 15px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}
.quote-copy li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
}
.lead-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-heading span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.form-heading h2 {
  margin: 10px 0 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfb;
  outline: none;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 122, 92, 0.08);
}
.form-grid .full {
  grid-column: 1/-1;
}
.consent {
  flex-direction: row !important;
  align-items: center;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #66716d;
}
.consent input {
  width: 16px;
}
.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}
.form-note {
  text-align: center;
  color: #8a938f;
  font-size: 9px;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 300px;
  padding: 18px 20px;
  border-radius: 15px;
  color: #fff;
  background: var(--dark);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  opacity: 0;
  transition: 0.35s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.toast strong {
  color: #8ce1c7;
}
.toast span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.site-footer {
  padding: 78px 0 28px;
  color: #fff;
  background: var(--dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 65px;
  padding-bottom: 70px;
}
.brand-light {
  color: #fff;
}
.brand-light small {
  color: rgba(255, 255, 255, 0.45);
}
.footer-brand p {
  max-width: 400px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-grid h3 {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}
.footer-grid a:hover {
  color: #91e4ca;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-menu {
    position: fixed;
    inset: 118px 0 0;
    z-index: 49;
    display: flex;
    flex-direction: column;
    padding: 34px 28px;
    color: #fff;
    background: var(--dark);
    transform: translateX(100%);
    transition: 0.3s;
  }
  .mobile-menu.open {
    transform: none;
  }
  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
  }
  .home-hero-layout,
  .page-hero-grid,
  .project-feature,
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .home-hero-layout {
    padding-top: 60px;
  }
  .home-hero-visual {
    min-height: 560px;
  }
  .page-hero-image img {
    height: 520px;
  }
  .content-two-col {
    grid-template-columns: 180px 1fr;
    gap: 50px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    display: none;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .simple-hero-visual {
    aspect-ratio: 1.35 / 1;
    margin-top: 30px;
    border-radius: 20px;
  }
  .quote-context-visual {
    aspect-ratio: 1.35 / 1;
  }
  :root {
    --shell: calc(100vw - 30px);
  }
  .utility-inner > span {
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .utility-inner div a {
    display: none;
  }
  .header-inner {
    height: 70px;
  }
  .header-actions .button {
    display: none;
  }
  .brand small {
    display: none;
  }
  .mobile-menu {
    top: 106px;
  }
  .section {
    padding: 82px 0;
  }
  .home-hero-layout {
    min-height: auto;
    gap: 38px;
    padding: 54px 0 65px;
  }
  .home-hero-copy h1,
  .page-hero h1,
  .simple-hero h1,
  .quote-copy h1 {
    font-size: clamp(47px, 14vw, 67px);
  }
  .home-hero-copy > p {
    font-size: 15px;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-facts div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
  }
  .home-hero-visual {
    min-height: 430px;
  }
  .hero-image-card {
    inset: 10px 0;
  }
  .floating-card {
    width: 150px;
    padding: 13px;
  }
  .card-a {
    left: -4px;
    top: 28px;
  }
  .card-b {
    right: -4px;
    bottom: 22px;
  }
  .image-caption {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }
  .logo-band > .shell {
    padding: 25px 0;
    display: block;
  }
  .logo-band p {
    margin: 0 0 20px;
  }
  .logo-band div div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-size: 10px;
  }
  .section-heading {
    display: block;
    margin-bottom: 38px;
  }
  .section-heading > p,
  .section-heading > .inline-link {
    display: block;
    margin-top: 22px;
  }
  .gateway-card {
    grid-column: span 12 !important;
    border-right: 0;
  }
  .industry-grid,
  .sector-index-grid,
  .projects-grid,
  .insights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    min-height: 320px;
  }
  .project-feature {
    gap: 40px;
  }
  .project-feature-image img {
    height: 390px;
  }
  .cta-panel,
  .contact-strip > .shell {
    display: block;
    padding: 40px 28px;
  }
  .cta-panel h2,
  .contact-strip h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }
  .page-hero {
    padding: 35px 0 60px;
  }
  .breadcrumbs {
    margin-bottom: 40px;
    overflow: auto;
    white-space: nowrap;
  }
  .page-hero-grid {
    gap: 40px;
  }
  .page-hero-image img {
    height: 340px;
  }
  .anchor-bar {
    top: 70px;
  }
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .content-two-col aside {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .content-two-col aside h2 {
    margin: 0;
  }
  .use-case-grid,
  .answer-grid {
    grid-template-columns: 1fr;
  }
  .answer-grid {
    gap: 35px;
  }
  .related-section > .shell {
    display: block;
  }
  .related-section > .shell > span {
    display: block;
    margin-bottom: 20px;
  }
  .sector-index-card img,
  .project-card img {
    height: 250px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-page {
    padding: 36px 0 70px;
  }
  .back-link {
    margin-bottom: 50px;
  }
  .lead-form {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 15px;
  }
}

/* V2.7 article-specific content upgrade actions */
.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.article-cta-actions .button {
  justify-content: center;
}

@media (max-width: 760px) {
  .article-cta-actions,
  .article-cta-actions .button {
    width: 100%;
  }
}

/* V2.7 consent-aware measurement and lead delivery journeys */
.form-heading > p {
  margin: -18px 0 28px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.lead-form[aria-busy="true"] {
  opacity: 0.78;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.form-trust span {
  padding: 7px 10px;
  border: 1px solid #dce7e2;
  border-radius: 999px;
  color: #52625c;
  background: #f7faf8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.optional-label {
  color: #7c8984;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.topic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.topic-options legend {
  width: 100%;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-options label {
  flex-direction: row;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #52625c;
  background: #fbfcfb;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.topic-options input {
  width: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.trust-note {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #cfe0d8;
  border-radius: 17px;
  background: #f1f7f4;
}

.trust-note strong {
  color: var(--green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.trust-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.template-library-section {
  background: #f7faf8;
}

.template-library-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.template-menu {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
}

.template-menu h2 {
  margin: 8px 0 20px;
  font-size: clamp(30px, 3vw, 42px);
}

.template-menu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #465650;
  background: #fff;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.template-menu > a::after {
  content: "\2192";
  color: var(--green);
}

.template-menu > a:hover,
.template-menu > a.is-active {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateX(3px);
}

.template-request-grid {
  display: grid;
  gap: 22px;
}

.template-preview-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #06281e, #091a15);
  box-shadow: 0 28px 80px rgba(5, 28, 21, 0.18);
}

.template-preview-card > span {
  color: #7bdabd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.template-preview-card h2 {
  margin: 15px 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}

.template-preview-card > p:not(.method-note) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.template-preview-card h3 {
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
}

.template-preview-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.template-preview-card li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.template-preview-card li::before {
  content: "\2713";
  margin-right: 10px;
  color: #7bdabd;
}

.template-preview-card .method-note {
  border-left-color: #7bdabd;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

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

.decision-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.decision-grid article > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.decision-grid h3 {
  margin: 42px 0 12px;
  font-size: 22px;
}

.decision-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.thank-you-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #f2f8f5, #fff 56%, #edf7f3);
}

.thank-you-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 90px 24px;
}

.thank-you-card {
  width: min(780px, 100%);
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid #d9e6e0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 35px 100px rgba(8, 44, 33, 0.12);
  text-align: center;
}

.thank-you-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  font-weight: 800;
}

.thank-you-card h1 {
  max-width: 650px;
  margin: 15px auto;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

.thank-you-card > p {
  max-width: 620px;
  margin: 20px auto;
  color: var(--muted);
  line-height: 1.75;
}

.thank-reference {
  width: max-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: #eff7f3;
  font-size: 10px;
}

.thank-reference strong {
  color: var(--green-dark);
  letter-spacing: 0.08em;
}

.thank-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.thank-actions a[hidden] {
  display: none;
}

.thank-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  text-align: left;
}

.thank-trust > div {
  padding: 18px;
  background: #fbfcfb;
}

.thank-trust strong,
.thank-trust span {
  display: block;
}

.thank-trust strong {
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 10px;
}

.thank-trust span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.thank-trust a {
  color: var(--green);
  text-decoration: underline;
}

.compact-footer {
  padding-top: 28px;
}

.privacy-preferences {
  position: fixed;
  z-index: 300;
  left: 20px;
  bottom: 20px;
  width: min(650px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  color: #fff;
  background: #071f18;
  box-shadow: 0 25px 80px rgba(4, 22, 17, 0.28);
}

.privacy-preferences[hidden] {
  display: none;
}

.privacy-preferences strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.privacy-preferences p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.privacy-preferences a {
  color: #8ce1c7;
  text-decoration: underline;
}

.privacy-preferences-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.privacy-choice {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.privacy-choice:hover,
.privacy-choice:focus-visible {
  border-color: #8ce1c7;
  background: rgba(140, 225, 199, 0.1);
}

.privacy-settings-trigger {
  position: fixed;
  z-index: 90;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid #d2dfd9;
  border-radius: 999px;
  color: #465650;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(16, 27, 24, 0.08);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

@media (max-width: 980px) {
  .template-library-layout {
    grid-template-columns: 1fr;
  }

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

  .template-menu > span,
  .template-menu > h2 {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .template-menu,
  .decision-grid,
  .thank-trust,
  .topic-options,
  .privacy-preferences {
    grid-template-columns: 1fr;
  }

  .template-menu > a:hover,
  .template-menu > a.is-active {
    transform: none;
  }

  .thank-you-shell {
    padding: 54px 16px;
  }

  .thank-you-card {
    padding: 30px 20px;
    border-radius: 23px;
  }

  .thank-actions,
  .thank-actions .button {
    width: 100%;
  }

  .privacy-preferences {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    gap: 15px;
    padding: 18px;
  }
}

/* V3 multi-page SEO/GEO architecture */
em {
  font-style: normal;
  color: var(--green);
}
.soft-page-hero,
.compact-product-hero,
.industry-hero {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(37, 164, 126, 0.1),
      transparent 34%
    ),
    linear-gradient(145deg, #fff, #f3f8f5);
}
.solution-index-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.solution-index-card {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.solution-index-card > span {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.solution-index-card img {
  height: 270px;
  object-fit: cover;
  transition: transform 0.45s;
}
.solution-index-card:hover img {
  transform: scale(1.025);
}
.solution-index-card div {
  padding: 28px;
}
.solution-index-card p,
.subsolution-card > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.solution-index-card h2 {
  margin: 11px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
}
.solution-index-card b,
.subsolution-card b {
  font-size: 10px;
}
.subsolution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.subsolution-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.subsolution-card h3 {
  margin: 44px 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
}
.subsolution-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.subsolution-card b {
  margin-top: auto;
}
.subsolution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.geo-section {
  background: linear-gradient(135deg, #eef7f2, #fbfdfc);
}
.six-grid {
  grid-template-columns: repeat(3, 1fr);
}
.decision-section {
  padding-top: 0;
}
.decision-section > .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.decision-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}
.decision-card > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.decision-card h3 {
  margin: 52px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}
.decision-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.journey-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.journey-grid span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}
.journey-grid h3 {
  margin: 68px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
}
.journey-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}
.industry-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.industry-mini-card {
  min-height: 125px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}
.industry-mini-card b {
  color: var(--green);
}
.section-foot-link {
  margin-top: 32px;
}
.article-hero {
  padding: 50px 0 80px;
  background:
    radial-gradient(circle at 80% 0, rgba(37, 164, 126, 0.11), transparent 35%),
    #f7faf8;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.article-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(48px, 6vw, 82px);
}
.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.article-hero img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 26px;
}
.article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #7b8782;
  font-size: 9px;
  font-weight: 700;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 85px;
}
.article-layout > aside {
  position: sticky;
  top: 145px;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-layout > aside strong {
  margin-bottom: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.article-layout > aside a {
  color: var(--muted);
  font-size: 10px;
}
.article-answer {
  padding: 30px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: #eff8f3;
}
.article-answer strong {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-answer p {
  margin: 10px 0 0;
  font-size: 17px;
  line-height: 1.75;
}
.article-block {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}
.article-block > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}
.article-block h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 35px;
}
.article-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.article-cta {
  margin: 60px 0;
  padding: 40px;
  border-radius: 22px;
  color: #fff;
  background: var(--dark);
}
.article-cta > span {
  color: #78d7b9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.article-cta h2 {
  margin: 12px 0;
  font-size: 38px;
}
.article-cta p {
  color: rgba(255, 255, 255, 0.65);
}
.legal-prose {
  max-width: 850px;
}
.legal-prose h2 {
  font-size: 42px;
}
.legal-prose p {
  color: var(--muted);
  line-height: 1.9;
}
.gateway-grid .gateway-card:nth-child(5) {
  grid-column: span 12;
}
.gateway-grid .gateway-card:nth-child(5) > div {
  max-width: 700px;
}
@media (max-width: 1080px) {
  .subsolution-grid,
  .six-grid {
    grid-template-columns: 1fr 1fr;
  }
  .decision-section > .shell,
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .article-hero img {
    height: 400px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-layout > aside {
    position: static;
    display: none;
  }
}
@media (max-width: 760px) {
  .solution-index-card {
    grid-column: span 12;
    min-height: auto;
  }
  .solution-index-card img {
    height: 220px;
  }
  .subsolution-grid,
  .six-grid,
  .decision-section > .shell,
  .journey-grid,
  .industry-mini-grid {
    grid-template-columns: 1fr;
  }
  .article-hero {
    padding: 35px 0 55px;
  }
  .article-hero img {
    height: 280px;
  }
  .article-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .article-block h2 {
    font-size: 29px;
  }
  .gateway-grid .gateway-card:nth-child(5) {
    grid-column: span 12;
  }
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-submit[disabled] {
  opacity: 0.65;
  cursor: wait;
}
.toast.error {
  background: #7d2424;
}
.toast.error strong,
.toast.error span {
  color: #fff;
}

/* V1.1 homepage motion and legal content */
html,
body {
  overflow-x: clip;
}
.home-page .soft-hero {
  isolation: isolate;
}
.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.55;
}
.hero-orb-a {
  width: 360px;
  height: 360px;
  right: 6%;
  top: -160px;
  background: radial-gradient(
    circle,
    rgba(75, 205, 163, 0.22),
    rgba(75, 205, 163, 0) 68%
  );
  animation: orbDriftA 13s ease-in-out infinite alternate;
}
.hero-orb-b {
  width: 280px;
  height: 280px;
  left: 38%;
  bottom: -180px;
  background: radial-gradient(
    circle,
    rgba(11, 122, 92, 0.14),
    rgba(11, 122, 92, 0) 70%
  );
  animation: orbDriftB 16s ease-in-out infinite alternate;
}
.hero-grid {
  animation: gridBreathe 12s ease-in-out infinite alternate;
}
.home-hero-copy .eyebrow > span {
  transform-origin: left;
  animation: eyebrowLine 1.1s 0.25s both;
}
.home-hero-copy h1 em {
  display: inline-block;
  background: linear-gradient(90deg, var(--green), #35aa82, var(--green));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headlineShimmer 8s linear infinite;
}
.home-hero-visual {
  perspective: 1100px;
}
.hero-image-card {
  overflow: hidden;
  transform: rotate(1.5deg) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.45s;
  will-change: transform;
}
.home-hero-visual:hover .hero-image-card {
  box-shadow: 0 34px 90px rgba(16, 27, 24, 0.17);
}
.hero-slides {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 22px;
  background: #dfe9e4;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 1s ease,
    transform 6.5s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 20, 15, 0.32));
}
.image-caption {
  z-index: 3;
}
.hero-slider-dots {
  position: absolute;
  z-index: 4;
  right: 33px;
  top: 32px;
  display: flex;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(9, 25, 20, 0.28);
  backdrop-filter: blur(10px);
}
.hero-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.3s;
}
.hero-slider-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: #fff;
}
.floating-card {
  will-change: transform;
}
.card-a {
  animation: floatCardA 5.6s ease-in-out infinite;
}
.card-b {
  animation: floatCardB 6.4s ease-in-out infinite;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  border-radius: 50%;
  background: #24bf78;
  box-shadow: 0 0 0 0 rgba(36, 191, 120, 0.45);
  animation: statusPulse 2s infinite;
}
.count-up {
  font-variant-numeric: tabular-nums;
}
.logo-band > .shell {
  overflow: hidden;
}
.logo-marquee {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logo-track {
  display: flex !important;
  width: max-content !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  animation: logoMarquee 26s linear infinite;
}
.logo-group {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 54px !important;
  padding-right: 54px !important;
}
.logo-group span {
  white-space: nowrap;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.motion-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.motion-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(47, 168, 130, 0.13),
    transparent 43%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.motion-card:hover:before {
  opacity: 1;
}
.gateway-card {
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.gateway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(16, 27, 24, 0.08);
}
.gateway-card b,
.industry-mini-card b {
  transition:
    transform 0.3s,
    color 0.3s;
}
.gateway-card:hover b,
.industry-mini-card:hover b {
  transform: translate(3px, -3px);
  color: var(--green);
}
.industry-mini-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.industry-mini-card:hover {
  transform: translateY(-5px);
  border-color: #cbdad3;
  box-shadow: 0 18px 42px rgba(16, 27, 24, 0.08);
}
.project-feature-image {
  overflow: hidden;
  transform: rotate(-1deg) translateY(var(--project-y, 0));
  transition: transform 0.22s linear;
  will-change: transform;
}
.project-feature-image img {
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.project-feature:hover .project-feature-image img {
  transform: scale(1.035);
}
.cta-motion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-motion:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -140%;
  left: -20%;
  width: 36%;
  height: 380%;
  transform: rotate(26deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  animation: ctaSweep 7s ease-in-out infinite;
}
.legal-prose h2 {
  margin: 58px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
}
.legal-prose h2:first-of-type {
  margin-top: 28px;
}
.legal-prose ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-prose a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-updated {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.legal-note {
  margin-top: 55px;
  padding: 28px;
  border: 1px solid #cfe0d8;
  border-radius: 18px;
  background: #f0f8f4;
}
.legal-note > strong {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-note p {
  margin-bottom: 0;
}
.cookie-table {
  overflow-x: auto;
  margin: 30px 0 55px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.cookie-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.cookie-table th,
.cookie-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.65;
}
.cookie-table th {
  color: var(--green);
  background: #f4f8f6;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-table tr:last-child td {
  border-bottom: 0;
}
.consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes orbDriftA {
  to {
    transform: translate3d(-80px, 90px, 0) scale(1.12);
  }
}
@keyframes orbDriftB {
  to {
    transform: translate3d(65px, -48px, 0) scale(0.88);
  }
}
@keyframes gridBreathe {
  from {
    opacity: 0.62;
    background-position: 0 0;
  }
  to {
    opacity: 1;
    background-position: 27px 18px;
  }
}
@keyframes eyebrowLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes headlineShimmer {
  to {
    background-position: -220% 0;
  }
}
@keyframes floatCardA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.5deg);
  }
}
@keyframes floatCardB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.4deg);
  }
  50% {
    transform: translate3d(0, 9px, 0) rotate(-0.5deg);
  }
}
@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 191, 120, 0.42);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(36, 191, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(36, 191, 120, 0);
  }
}
@keyframes logoMarquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes ctaSweep {
  0%,
  18% {
    transform: translateX(-220%) rotate(26deg);
  }
  55%,
  100% {
    transform: translateX(430%) rotate(26deg);
  }
}

@media (max-width: 760px) {
  .hero-slider-dots {
    right: 23px;
    top: 22px;
  }
  .logo-band > .shell {
    overflow: hidden;
  }
  .logo-marquee {
    width: 100%;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
  }
  .logo-group {
    gap: 38px !important;
    padding-right: 38px !important;
  }
  .project-feature-image {
    transform: rotate(-0.5deg);
  }
}

@media (max-width: 1080px) {
  .mobile-menu {
    transform: none !important;
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      clip-path 0.3s ease,
      visibility 0s 0.3s;
  }
  .mobile-menu.open {
    transform: none !important;
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
    transition: clip-path 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide {
    opacity: 0;
    transform: none;
  }
  .hero-slide.is-active {
    opacity: 1;
  }
  .logo-track {
    transform: none !important;
  }
  .logo-group[aria-hidden="true"] {
    display: none !important;
  }
}

.error-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-copy {
  max-width: 720px;
}

.error-eyebrow {
  justify-content: center;
}

.error-title {
  font-size: clamp(3rem, 9vw, 7rem);
  margin: 0.4em 0 0.15em;
}

.error-description {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

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

/* V1.2 homepage refinement */
.image-caption {
  left: 28px;
  right: auto;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  max-width: min(360px, calc(100% - 56px));
  padding: 16px 18px;
}
.image-caption span {
  font-size: 8px;
  line-height: 1.35;
}
.image-caption strong {
  max-width: none;
  text-align: left;
  font-size: 14px;
  line-height: 1.35;
}
.card-b {
  right: 8px;
  top: 84px;
  bottom: auto;
}
.hero-slider-dots {
  z-index: 4;
}
.gateway-card.gateway-card-visual {
  grid-template-columns: minmax(185px, 220px) 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 20px;
  background: #fff;
  overflow: hidden;
}
.gateway-card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  border: 1px solid #d8e3dd;
  border-radius: 18px;
  background: #eef3f0;
}
.gateway-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gateway-card:hover .gateway-card-media img {
  transform: scale(1.045);
}
.gateway-card-media .gateway-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 23, 20, 0.78);
  backdrop-filter: blur(8px);
  font-size: 10px;
}
.gateway-card-content {
  display: flex;
  flex-direction: column;
}
.gateway-card-content p {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.gateway-card-content h3 {
  margin: 0 0 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  line-height: 1.05;
}
.gateway-card-content small {
  display: block;
  margin: 0 0 12px;
  color: #7a8681;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gateway-card-content span {
  display: block;
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}
.gateway-card:nth-child(5) .gateway-card-media {
  height: 210px;
}
.gateway-card:nth-child(5) .gateway-card-content h3 {
  font-size: 31px;
}
@media (max-width: 1080px) {
  .image-caption {
    max-width: 300px;
    left: 22px;
    bottom: 22px;
  }
  .card-a {
    left: -2px;
    top: 34px;
  }
  .card-b {
    top: 124px;
    right: -4px;
    width: 182px;
  }
  .gateway-card.gateway-card-visual {
    grid-template-columns: minmax(170px, 210px) 1fr auto;
  }
}
@media (max-width: 760px) {
  .home-hero-visual {
    min-height: 470px;
  }
  .image-caption {
    left: 16px;
    bottom: 16px;
    max-width: 220px;
    padding: 14px 15px;
  }
  .image-caption strong {
    font-size: 12px;
  }
  .card-a,
  .card-b {
    width: 148px;
  }
  .card-a {
    left: -4px;
    top: 20px;
  }
  .card-b {
    right: -4px;
    top: 104px;
  }
  .gateway-card.gateway-card-visual {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  .gateway-card-media {
    height: 205px;
  }
  .gateway-card:nth-child(5) .gateway-card-media {
    height: 220px;
  }
  .gateway-card.gateway-card-visual b {
    justify-self: flex-start;
  }
}

/* V1.3 homepage visual and overlap fixes */
.home-hero-visual {
  isolation: isolate;
}
.image-caption {
  z-index: 5;
  max-width: min(330px, calc(100% - 245px));
  padding: 14px 16px;
  background: rgba(10, 25, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(13px);
}
.image-caption span,
.image-caption strong {
  overflow-wrap: anywhere;
}
.card-a {
  z-index: 6;
  left: -18px;
  top: 22px;
  bottom: auto;
}
.card-b {
  z-index: 6;
  right: -18px;
  top: auto;
  bottom: 22px;
  width: 205px;
}
.hero-slider-dots {
  z-index: 7;
}
.gateway-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 20, 16, 0.22));
  pointer-events: none;
}
.gateway-media-badge {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 24, 19, 0.72);
  backdrop-filter: blur(8px);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.gateway-card-media img {
  object-position: center center;
}
.gateway-grid .gateway-card:nth-child(4) .gateway-card-media img {
  object-position: center 42%;
}
.gateway-grid .gateway-card:nth-child(5) .gateway-card-media img {
  object-position: center 48%;
}
@media (max-width: 1080px) {
  .image-caption {
    max-width: calc(100% - 225px);
    left: 18px;
    bottom: 18px;
  }
  .card-a {
    left: -8px;
    top: 18px;
  }
  .card-b {
    right: -8px;
    bottom: 18px;
    width: 188px;
  }
}
@media (max-width: 760px) {
  .image-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 12px 14px;
  }
  .card-a,
  .card-b {
    display: none;
  }
  .hero-slider-dots {
    right: 16px;
    top: 16px;
  }
  .gateway-media-badge {
    right: 10px;
    bottom: 10px;
  }
}

/* V1.4 homepage visual corrections */
.home-hero-visual {
  perspective: none;
}
.hero-image-card,
.home-hero-visual:hover .hero-image-card {
  transform: none !important;
  box-shadow: 0 28px 72px rgba(16, 27, 24, 0.13);
}
.hero-slides {
  inset: 0;
  border-radius: 24px;
}
.hero-slide img {
  border-radius: 24px;
}
.image-caption {
  left: 24px;
  right: 24px;
  bottom: 22px;
  max-width: 420px;
  padding: 14px 16px;
  background: rgba(8, 24, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.image-caption span,
.image-caption strong {
  position: static;
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: left;
}
.image-caption strong {
  font-size: 15px;
  line-height: 1.3;
}
.floating-card {
  display: none !important;
}

.gateway-grid {
  gap: 20px;
}
.gateway-card.gateway-card-visual {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}
.gateway-card.gateway-card-visual .gateway-card-media {
  width: 100%;
  min-width: 100%;
  height: 255px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #e9efec;
}
.gateway-card.gateway-card-visual .gateway-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gateway-card.gateway-card-visual .gateway-card-content {
  padding: 25px 28px 30px;
}
.gateway-card.gateway-card-visual > b {
  position: absolute;
  right: 26px;
  bottom: 28px;
}
.gateway-card.gateway-card-visual .gateway-media-badge {
  display: none;
}
.gateway-card.gateway-card-visual:nth-child(5) {
  grid-column: span 12;
  display: grid !important;
  grid-template-columns: 42% 1fr;
  min-height: 310px;
}
.gateway-card.gateway-card-visual:nth-child(5) .gateway-card-media {
  height: 100%;
  min-height: 310px;
}
.gateway-card.gateway-card-visual:nth-child(5) .gateway-card-content {
  justify-content: center;
  padding: 38px 45px;
}

.industry-mini-grid {
  gap: 18px;
}
.industry-mini-card {
  display: block;
  min-height: 245px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}
.industry-card-media {
  position: relative;
  width: 100%;
  height: 245px;
  overflow: hidden;
}
.industry-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 18, 14, 0) 35%,
    rgba(5, 18, 14, 0.82) 100%
  );
}
.industry-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.industry-mini-card:hover .industry-card-media img {
  transform: scale(1.045);
}
.industry-card-overlay {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.industry-card-overlay span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}
.industry-card-overlay b {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 760px) {
  .hero-image-card {
    transform: none !important;
  }
  .image-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 12px 14px;
  }
  .image-caption strong {
    font-size: 13px;
  }
  .gateway-card.gateway-card-visual .gateway-card-media {
    height: 220px;
  }
  .gateway-card.gateway-card-visual:nth-child(5) {
    display: flex !important;
    grid-column: span 12;
  }
  .gateway-card.gateway-card-visual:nth-child(5) .gateway-card-media {
    height: 220px;
    min-height: 0;
  }
  .gateway-card.gateway-card-visual:nth-child(5) .gateway-card-content {
    padding: 25px 28px 30px;
  }
  .industry-card-media,
  .industry-mini-card {
    height: 220px;
    min-height: 220px;
  }
}

/* V1.5 real brand logos and interactive kiosk experience */
.logo-band > .shell {
  min-height: 132px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}
.logo-band p {
  min-width: 0;
  margin: 0;
}
.logo-marquee {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.logo-band .logo-track {
  display: flex;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logo-band .logo-group {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  padding-right: 18px !important;
  flex: 0 0 auto !important;
  color: inherit !important;
  font-size: inherit !important;
}
.logo-item {
  display: grid;
  place-items: center;
  width: 168px;
  height: 72px;
  padding: 15px 22px;
  border: 1px solid #e1e8e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 27, 24, 0.045);
}
.logo-item img {
  display: block;
  width: auto !important;
  max-width: 126px;
  height: auto !important;
  max-height: 38px;
  object-fit: contain;
  filter: saturate(0.88);
  opacity: 0.82;
  transition:
    filter 0.25s,
    opacity 0.25s,
    transform 0.25s;
}
.logo-item:hover img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.04);
}

/* V1.8 homepage solution banner */
.home-hero-layout {
  grid-template-columns: 0.96fr 1.04fr;
  gap: 58px;
}
.home-hero-visual.hero-banner-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  perspective: none;
}
.hero-solution-stack {
  position: relative;
  width: min(100%, 610px);
  overflow: hidden;
  border: 1px solid rgba(16, 43, 34, 0.12);
  border-radius: 30px;
  background: #10231c;
  box-shadow: 0 30px 78px rgba(16, 27, 24, 0.17);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.hero-solution-stack:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 88px rgba(16, 27, 24, 0.22);
}
.hero-solution-stack > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1192/1592;
  object-fit: cover;
}
.hero-stack-link {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 20%;
  border-radius: 22px;
  outline: 0;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}
.hero-stack-link:hover {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.hero-stack-link:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 0 0 3px #fff,
    0 0 0 4px var(--green);
}
.hero-stack-link-1 {
  top: 0;
}
.hero-stack-link-2 {
  top: 20%;
}
.hero-stack-link-3 {
  top: 40%;
}
.hero-stack-link-4 {
  top: 60%;
}
.hero-stack-link-5 {
  top: 80%;
}
@media (max-width: 1080px) {
  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .home-hero-visual.hero-banner-visual {
    justify-content: center;
  }
  .hero-solution-stack {
    width: min(100%, 620px);
  }
}
@media (max-width: 760px) {
  .home-hero-visual.hero-banner-visual {
    min-height: 0;
  }
  .hero-solution-stack {
    border-radius: 22px;
  }
  .hero-stack-link {
    border-radius: 16px;
  }
}

/* V1.9 homepage composition: wide hero carousel, trusted brands and six-card solutions */
.home-page {
  --shell: min(1200px, calc(100vw - 56px));
}
.home-page .utility-bar {
  display: none;
}
.home-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}
.home-page .header-inner {
  height: 72px;
}
.home-page .desktop-nav a {
  padding-block: 25px;
}

.home-page .home-hero {
  overflow: clip;
  background:
    radial-gradient(
      circle at 88% 88%,
      rgba(43, 170, 128, 0.12),
      transparent 30%
    ),
    linear-gradient(145deg, #ffffff 0%, #f5f9f7 68%, #eef7f3 100%);
}
.home-page .home-hero .hero-grid {
  background-image:
    linear-gradient(rgba(15, 80, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 80, 61, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 3%, #000 38%, #000 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 3%,
    #000 38%,
    #000 100%
  );
}
.home-page .home-hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 3vw, 40px);
  min-height: 0;
  padding: 30px 0 28px;
}
.home-page .home-hero-copy {
  align-self: center;
  min-width: 0;
}
.home-page .home-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(46px, 4vw, 60px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}
.home-page .home-hero-copy h1 span,
.home-page .home-hero-copy h1 em {
  display: block;
}
.home-page .home-hero-copy h1 em {
  margin-top: 8px;
  color: var(--green);
  background: none;
  -webkit-text-fill-color: var(--green);
  animation: none;
}
.home-page .home-hero-copy > p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
}
.home-page .hero-actions {
  margin-top: 20px;
}
.home-page .hero-actions .button {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 11px;
}
.home-page .hero-facts {
  gap: 0;
  margin-top: 22px;
  padding-top: 18px;
}
.home-page .hero-facts > div {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  padding: 0 14px;
}
.home-page .hero-facts > div:first-child {
  padding-left: 0;
}
.home-page .hero-facts > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 1px;
  width: 1px;
  background: #d8e3de;
}
.home-page .hero-facts svg {
  grid-row: 1 / 3;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-page .hero-facts strong {
  font-size: 16px;
  line-height: 1.2;
}
.home-page .hero-facts span {
  max-width: 145px;
  margin-top: 6px;
  font-size: 9px;
  line-height: 1.5;
}

.home-page .home-hero-visual {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
  isolation: isolate;
  perspective: none;
}
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 1.42 / 1;
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  color: #fff;
  background: #10231c;
  box-shadow: 0 28px 74px rgba(16, 27, 24, 0.18);
  outline: none;
}
.hero-carousel:focus-visible {
  box-shadow:
    0 0 0 4px rgba(11, 122, 92, 0.22),
    0 28px 74px rgba(16, 27, 24, 0.18);
}
.hero-carousel .hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #10231c;
}
.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.62s ease,
    transform 6s ease;
  pointer-events: none;
}
.hero-carousel .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-carousel .hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.page-hero-image img.product-cutout {
  object-fit: contain;
  padding: clamp(18px, 4vw, 52px);
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 255, 255, 0.98),
      transparent 46%
    ),
    #edf3f0;
}
.hero-carousel .hero-slide:first-child img {
  object-position: 58% center;
}
.hero-carousel .hero-slide:nth-child(2) img {
  object-position: 44% center;
}
.hero-carousel .hero-slide:nth-child(3) img {
  object-position: 56% center;
}
.hero-carousel .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 18, 14, 0.96) 0%,
      rgba(5, 18, 14, 0.9) 38%,
      rgba(5, 18, 14, 0.72) 58%,
      rgba(5, 18, 14, 0.1) 76%
    ),
    linear-gradient(
      180deg,
      rgba(5, 18, 14, 0.05) 45%,
      rgba(5, 18, 14, 0.88) 100%
    );
}
.hero-slide-caption {
  position: absolute;
  z-index: 3;
  top: clamp(28px, 3.5vw, 44px);
  left: clamp(30px, 3.5vw, 44px);
  width: min(310px, 49%);
}
.hero-slide-caption > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #86dec2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero-slide-caption > span::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #31c699;
}
.hero-slide-caption h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-slide-caption p {
  max-width: 290px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.65;
}
.hero-slide-caption a {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.hero-slide-caption a:hover,
.hero-slide-caption a:focus-visible {
  color: #91e4ca;
  border-color: #91e4ca;
}
.hero-slider-arrow {
  position: absolute;
  z-index: 7;
  top: 47%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 18, 14, 0.54);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  background: var(--green);
  transform: scale(1.05);
  outline: none;
}
.hero-slider-arrow span {
  font-size: 18px;
  line-height: 1;
}
.hero-slider-prev {
  left: 14px;
}
.hero-slider-next {
  right: 14px;
}
.hero-category-rail {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 35px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}
.hero-category-rail button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 60px;
  padding: 8px 6px 10px;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.69);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
}
.hero-category-rail button::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}
.hero-category-rail button:hover,
.hero-category-rail button:focus-visible,
.hero-category-rail button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}
.hero-category-rail button.is-active::after {
  background: #27c394;
}
.hero-category-rail svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-category-rail span {
  max-width: 100%;
  overflow: hidden;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-carousel .hero-slider-dots {
  position: absolute;
  z-index: 8;
  top: auto;
  right: 50%;
  bottom: 14px;
  display: flex;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateX(50%);
}
.hero-carousel .hero-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}
.hero-carousel .hero-slider-dots button.is-active {
  width: 20px;
  background: #27c394;
}

.trusted-brands {
  padding: 19px 0 21px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trusted-brands p {
  margin: 0 0 13px;
  color: #42514b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.trusted-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}
.trusted-logo-grid span {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 36px;
}
.trusted-logo-grid img {
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
  filter: saturate(0.95);
}

.home-solutions-section {
  padding: 42px 0 94px;
  background: #fff;
}
.home-solutions-heading {
  margin-bottom: 27px;
}
.home-solutions-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 12px;
}
.home-solutions-title-row h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 2.6vw, 37px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.home-solution-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 352px;
  overflow: hidden;
  border: 1px solid #dce5e1;
  border-radius: 14px;
  background: #fff;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.home-solution-card:hover {
  z-index: 2;
  border-color: #bfd5cb;
  box-shadow: 0 18px 40px rgba(16, 43, 34, 0.11);
  transform: translateY(-5px);
}
.home-solution-card:focus-visible {
  z-index: 3;
  outline: 3px solid rgba(11, 122, 92, 0.3);
  outline-offset: 3px;
}
.home-solution-media {
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  background: #eaf0ed;
}
.home-solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}
.home-solution-card:nth-child(6) .home-solution-media img {
  object-position: 70% center;
}
.home-solution-card:hover .home-solution-media img {
  transform: scale(1.04);
}
.home-solution-content {
  display: flex;
  min-height: 0;
  padding: 15px 15px 17px;
  flex: 1;
  flex-direction: column;
}
.home-solution-number {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.home-solution-content h3 {
  margin: 7px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.home-solution-content p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.home-solution-content b {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 13px;
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.home-solution-card:hover .home-solution-content b {
  transform: translateX(4px);
}

@media (max-width: 1180px) {
  .home-solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-solution-card {
    min-height: 340px;
  }
  .home-solution-media {
    aspect-ratio: 1.8 / 1;
  }
  .home-solution-content h3 {
    font-size: 18px;
  }
  .home-solution-content p {
    font-size: 11px;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .home-page {
    --shell: calc(100vw - 48px);
  }
  .home-page .home-hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    padding: 28px 0;
  }
  .home-page .home-hero-copy {
    max-width: none;
  }
  .home-page .home-hero-copy h1 {
    max-width: none;
    font-size: 44px;
  }
  .home-page .home-hero-visual {
    max-width: none;
  }
  .hero-carousel {
    min-height: 390px;
  }
  .home-page .hero-facts > div {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 4px;
    padding-inline: 10px;
  }
  .home-page .hero-facts > div:first-child {
    padding-left: 0;
  }
  .home-page .hero-facts svg {
    grid-row: auto;
    width: 23px;
    height: 23px;
  }
  .home-page .hero-facts strong {
    font-size: 14px;
  }
  .home-page .hero-facts span {
    margin-top: 0;
    font-size: 8px;
  }
}

@media (max-width: 920px) {
  .home-page .home-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 36px 0 32px;
  }
  .home-page .home-hero-copy {
    max-width: 760px;
  }
  .home-page .home-hero-copy h1 {
    max-width: 730px;
  }
  .home-page .home-hero-visual {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }
  .hero-carousel {
    aspect-ratio: 1.5 / 1;
  }
}

@media (max-width: 1080px) {
  .home-page .mobile-menu {
    inset: 72px 0 0;
  }
}

@media (max-width: 760px) {
  .home-page {
    --shell: calc(100vw - 30px);
  }
  .home-page .header-inner {
    height: 70px;
  }
  .home-page .mobile-menu {
    inset: 70px 0 0;
  }
  .home-page .home-hero-layout {
    gap: 26px;
    padding: 32px 0 28px;
  }
  .home-page .home-hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px);
  }
  .home-page .home-hero-copy > p {
    font-size: 14px;
  }
  .home-page .hero-actions .button {
    flex: 1 1 180px;
  }
  .home-page .hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-page .hero-facts > div {
    grid-template-columns: 34px 112px 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 0 14px;
    border-bottom: 1px solid #d8e3de;
  }
  .home-page .hero-facts > div:last-child {
    border-bottom: 0;
  }
  .home-page .hero-facts > div:not(:last-child)::after {
    display: none;
  }
  .home-page .hero-facts svg {
    grid-row: auto;
  }
  .home-page .hero-facts span {
    max-width: none;
    margin-top: 0;
  }
  .hero-carousel {
    width: 100%;
    height: clamp(430px, 72vw, 540px);
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 20px;
  }
  .hero-carousel .hero-slide:first-child img {
    object-position: 64% center;
  }
  .hero-slide-caption {
    top: 24px;
    left: 22px;
    width: calc(100% - 66px);
  }
  .hero-slide-caption h2 {
    max-width: 310px;
    font-size: clamp(25px, 7vw, 32px);
  }
  .hero-slide-caption p {
    max-width: 270px;
    font-size: 11px;
  }
  .hero-slider-arrow {
    top: 51%;
    width: 38px;
    height: 38px;
  }
  .hero-slider-prev {
    left: 9px;
  }
  .hero-slider-next {
    right: 9px;
  }
  .hero-category-rail {
    right: 15px;
    bottom: 35px;
    left: 15px;
    display: flex;
    gap: 4px;
    overflow-x: visible;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .hero-category-rail::-webkit-scrollbar {
    display: none;
  }
  .hero-category-rail button {
    min-height: 58px;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 3px;
  }
  .trusted-brands {
    padding-block: 24px 27px;
  }
  .trusted-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
  }
  .trusted-logo-grid img {
    max-width: 105px;
    max-height: 32px;
  }
  .home-solutions-section {
    padding: 54px 0 78px;
  }
  .home-solutions-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-solution-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .home-solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-page .hero-actions {
    flex-direction: column;
  }
  .home-page .hero-actions .button {
    width: 100%;
    flex-basis: auto;
  }
  .hero-carousel {
    height: clamp(400px, 110vw, 480px);
    min-height: 0;
  }
  .trusted-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-solution-card {
    min-height: 0;
  }
  .home-solution-media {
    aspect-ratio: 1.85 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hero-slide,
  .home-solution-card,
  .home-solution-media img {
    transition: none;
  }
}

/* V2.2 official brand and WhatsApp contact path */
.header-inner {
  grid-template-columns: 220px 1fr auto;
}
.brand-logo-image {
  width: 176px;
  height: auto;
  clip-path: inset(3% 0 0);
  object-fit: contain;
}
.site-footer .brand-light {
  width: max-content;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
}
.site-footer .brand-logo-image {
  width: 184px;
}
.whatsapp-fab {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 90;
  display: inline-flex;
  min-height: 52px;
  padding: 0 19px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #168c55;
  box-shadow: 0 16px 38px rgba(10, 64, 39, 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.whatsapp-fab svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  flex: 0 0 auto;
}
.whatsapp-fab:hover {
  color: #fff;
  background: #117647;
  box-shadow: 0 18px 44px rgba(10, 64, 39, 0.34);
  transform: translateY(-2px);
}
.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(22, 140, 85, 0.3);
  outline-offset: 4px;
}
.whatsapp-transfer-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid #d7e9e0;
  border-radius: 12px;
  color: #50615a;
  background: #f4faf7;
  font-size: 10px;
  line-height: 1.6;
}
.whatsapp-transfer-note strong {
  color: var(--green-dark);
}
.error-brand {
  margin-bottom: 52px;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 760px) {
  .brand-logo-image {
    width: 142px;
  }
  .site-footer .brand-logo-image {
    width: 174px;
  }
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-inline: 14px 16px;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}

/* V2.4 mobile navigation: viewport-level panel for mobile WebKit */
.menu-toggle span {
  transition: transform 0.22s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
@media (max-width: 1080px) {
  .site-header {
    z-index: 130;
  }
  body.menu-open .site-header {
    position: fixed;
    top: var(--mobile-header-top, 0);
    right: 0;
    left: 0;
    width: 100%;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
  }
  .mobile-menu.mobile-menu-portal {
    position: fixed;
    inset: var(--mobile-menu-top, 82px) 0 0 !important;
    z-index: 120;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px max(28px, env(safe-area-inset-right))
      calc(34px + env(safe-area-inset-bottom))
      max(28px, env(safe-area-inset-left));
    background:
      radial-gradient(circle at 92% 8%, rgba(40, 170, 128, 0.2), transparent 34%),
      var(--dark);
    box-shadow: 0 32px 72px rgba(3, 19, 14, 0.28);
  }
  .mobile-menu.mobile-menu-portal a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .mobile-menu.mobile-menu-portal a::after {
    content: "\2197";
    color: #65d2aa;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
  .mobile-menu.mobile-menu-portal a:last-child {
    justify-content: center;
    min-height: 54px;
    margin-top: 24px;
    padding-inline: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: var(--green);
    font-size: 16px;
    text-align: center;
  }
  .mobile-menu.mobile-menu-portal a:last-child::after {
    margin-left: 12px;
    color: #fff;
  }
  body.menu-open .whatsapp-fab {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
}

/* V2.3 category icons and decision-ready lead content */
[data-card-icon] {
  position: relative;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
[data-card-icon]::before,
[data-card-icon]::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
[data-card-icon]::before {
  top: 23px;
  right: 23px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 122, 92, 0.12);
  border-radius: 14px;
  background: linear-gradient(145deg, #f4fbf7, #e4f4ec);
}
[data-card-icon]::after {
  top: 33px;
  right: 33px;
  width: 26px;
  height: 26px;
  background: var(--green);
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
}
[data-card-icon="people"] {
  --card-icon: url("assets/icons/card-people.svg");
}
[data-card-icon="screen"] {
  --card-icon: url("assets/icons/card-screen.svg");
}
[data-card-icon="support"] {
  --card-icon: url("assets/icons/card-support.svg");
}
[data-card-icon="kiosk"] {
  --card-icon: url("assets/icons/card-kiosk.svg");
}
[data-card-icon="led"] {
  --card-icon: url("assets/icons/card-led.svg");
}
[data-card-icon="esl"] {
  --card-icon: url("assets/icons/card-esl.svg");
}
[data-card-icon="cloud"] {
  --card-icon: url("assets/icons/card-cloud.svg");
}
.journey-grid article:hover,
.use-case-grid article:hover,
.decision-card:hover {
  border-color: #bfd8cc;
  box-shadow: 0 16px 38px rgba(17, 60, 46, 0.09);
  transform: translateY(-3px);
}
.lead-brief-section {
  padding: 76px 0;
  background: #fff;
}
.lead-brief {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 5%, rgba(43, 181, 139, 0.2), transparent 31%),
    linear-gradient(135deg, #0a1814, #0b2b21);
  box-shadow: 0 28px 70px rgba(8, 39, 29, 0.16);
}
.lead-brief::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 28%, #000);
  pointer-events: none;
}
.lead-brief__intro,
.lead-brief__points {
  position: relative;
  z-index: 1;
}
.lead-brief__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  align-items: end;
  gap: 54px;
}
.lead-brief .eyebrow {
  color: #8fe1c8;
}
.lead-brief h2 {
  max-width: 800px;
  margin: 18px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.lead-brief__copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}
.lead-brief__action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
.lead-brief__action .button {
  width: 100%;
}
.lead-brief__action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.65;
}
.lead-brief__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}
.lead-brief__points article {
  min-height: 170px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}
.lead-brief__points span {
  color: #75d8bb;
  font-size: 9px;
  font-weight: 800;
}
.lead-brief__points h3 {
  margin: 22px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
}
.lead-brief__points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .lead-brief__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lead-brief__action {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  [data-card-icon]::before {
    top: 21px;
    right: 21px;
  }
  [data-card-icon]::after {
    top: 31px;
    right: 31px;
  }
  .lead-brief-section {
    padding: 54px 0;
  }
  .lead-brief {
    border-radius: 23px;
  }
  .lead-brief h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .lead-brief__points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .lead-brief__points article {
    min-height: 0;
  }
  .lead-brief__action {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-card-icon] {
    transition: none;
  }
}

/* V2.4 UK and EU data hub */
.data-hub-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 82px;
  background:
    radial-gradient(circle at 82% 16%, rgba(30, 157, 117, 0.13), transparent 28%),
    linear-gradient(135deg, #fbfdfc, #edf5f1);
}
.data-hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(12, 70, 53, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 70, 53, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  pointer-events: none;
}
.data-hub-hero .shell {
  position: relative;
  z-index: 1;
}
.data-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(330px, 0.7fr);
  align-items: end;
  gap: clamp(44px, 7vw, 92px);
  margin-top: 52px;
}
.data-hero-copy h1 {
  max-width: 810px;
  margin: 20px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 6.3vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.062em;
}
.data-hero-copy h1 em {
  color: var(--green);
  font-style: normal;
}
.data-hero-copy > p {
  max-width: 730px;
  margin: 0;
  color: #50605a;
  font-size: 16px;
  line-height: 1.75;
}
.data-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.data-edition-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(42, 186, 141, 0.25), transparent 36%),
    linear-gradient(145deg, #0c1714, #0a2a20);
  box-shadow: 0 30px 72px rgba(8, 45, 34, 0.2);
}
.data-edition-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(145deg, transparent 18%, #000);
  pointer-events: none;
}
.data-edition-panel > * {
  position: relative;
  z-index: 1;
}
.data-edition-kicker {
  color: #81ddc1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.data-edition-panel > strong {
  display: block;
  margin: 24px 0 2px;
  color: #80e2c4;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(82px, 8vw, 112px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.data-edition-panel > h2 {
  max-width: 300px;
  margin: 18px 0 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.data-edition-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.data-edition-facts div {
  display: grid;
  gap: 5px;
}
.data-edition-facts span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.data-edition-facts b {
  font-size: 11px;
  line-height: 1.45;
}
.data-method-strip {
  border-block: 1px solid #16382d;
  color: #fff;
  background: #0b1f19;
}
.data-method-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, auto);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  min-height: 82px;
}
.data-method-grid > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}
.data-method-grid > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  white-space: nowrap;
}
.data-method-grid b {
  margin-right: 7px;
  color: #73d8b9;
  font-size: 9px;
}
.evidence-region-section {
  padding-block: 96px;
}
.evidence-region-eu {
  border-block: 1px solid var(--line);
  background: #f3f7f5;
}
.region-section-heading,
.regional-brief-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.55fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 42px;
}
.region-section-heading h2,
.regional-brief-heading h2,
.data-watch-heading h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.region-section-heading > p,
.regional-brief-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.evidence-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.evidence-metric-card {
  display: flex;
  min-height: 555px;
  padding: 25px;
  border: 1px solid #dbe5e0;
  border-top: 4px solid var(--metric-accent, var(--green));
  border-radius: 22px;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 10px 34px rgba(22, 57, 46, 0.045);
}
.evidence-metric-card.metric-uk {
  --metric-accent: #284f8f;
}
.evidence-metric-card.metric-eu {
  --metric-accent: #16865f;
}
.metric-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding-right: 58px;
}
.metric-meta span,
.metric-meta time {
  display: inline-flex;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  align-items: center;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.metric-meta span {
  color: #fff;
  background: var(--metric-accent, var(--green));
}
.metric-meta time {
  color: #64726d;
  background: #eef3f1;
}
.metric-value {
  display: block;
  margin: 30px 0 15px;
  color: var(--metric-accent, var(--green));
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 4vw, 62px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}
.metric-value.metric-value-compact {
  font-size: clamp(43px, 3.6vw, 54px);
}
.evidence-metric-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.13;
  letter-spacing: -0.032em;
}
.metric-scope {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}
.metric-decision {
  margin: 22px 0 20px;
  padding: 16px;
  border-radius: 14px;
  background: #f3f7f5;
}
.metric-decision span {
  color: var(--metric-accent, var(--green));
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.metric-decision p {
  margin: 8px 0 0;
  color: #3e4d48;
  font-size: 10px;
  line-height: 1.65;
}
.evidence-metric-card > a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
}
.evidence-metric-card > a:hover,
.data-watch-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.data-watch-section {
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 5%, rgba(42, 183, 140, 0.18), transparent 30%),
    #0b1915;
}
.data-watch-heading {
  max-width: 880px;
}
.data-watch-heading .eyebrow {
  color: #7edcbc;
}
.data-watch-heading h2 {
  color: #fff;
}
.data-watch-heading > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.75;
}
.data-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 42px;
}
.data-watch-grid article {
  display: flex;
  min-height: 350px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
}
.data-watch-grid [data-card-icon]::before {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.08);
}
.data-watch-grid [data-card-icon]::after {
  background: #70d7b8;
}
.data-watch-grid article > span {
  max-width: calc(100% - 64px);
  color: #71d6b7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.data-watch-grid strong {
  display: block;
  margin: 40px 0 15px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.data-watch-grid h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.14;
}
.data-watch-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.7;
}
.data-watch-grid a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #80dfc1;
  font-size: 9px;
  font-weight: 800;
}
.regional-brief-section {
  background: #f6f9f7;
}
.regional-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.regional-path-card {
  display: flex;
  min-height: 430px;
  padding: 34px;
  border: 1px solid #d7e3dd;
  border-radius: 26px;
  flex-direction: column;
  background: #fff;
}
.regional-path-code {
  display: inline-flex;
  width: max-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  align-items: center;
  color: #fff;
  background: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.regional-path-card h3 {
  max-width: calc(100% - 65px);
  margin: 38px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.regional-path-card > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.regional-path-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}
.regional-path-card li {
  color: #34443e;
  font-size: 11px;
}
.regional-path-card li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--green);
  font-weight: 800;
}
.regional-path-card .button {
  width: max-content;
  margin-top: auto;
}
.data-faq-section {
  background: #fff;
}
.data-faq-section .faq-grid > div:first-child > p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.75;
}

/* Homepage data signal band */
.home-evidence-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at 92% 4%, rgba(36, 172, 129, 0.22), transparent 28%),
    linear-gradient(145deg, #0a1713, #0a2a20);
}
.home-evidence-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 14%, #000);
  pointer-events: none;
}
.home-evidence-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.63fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(44px, 7vw, 88px);
}
.home-evidence-copy {
  position: sticky;
  top: 120px;
}
.home-evidence-copy .eyebrow {
  color: #7ddbbb;
}
.home-evidence-copy h2 {
  margin: 19px 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.home-evidence-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.8;
}
.home-evidence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.home-evidence-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}
.home-evidence-note {
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 9px !important;
  line-height: 1.65 !important;
}
.home-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.home-evidence-card {
  display: flex;
  min-height: 305px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 21px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.058);
  backdrop-filter: blur(7px);
}
.home-evidence-card[data-card-icon]::before {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.home-evidence-card[data-card-icon]::after {
  background: #73d9ba;
}
.home-evidence-card .metric-meta {
  min-height: 42px;
}
.home-evidence-card .metric-meta span {
  background: #2e5b9b;
}
.home-evidence-card.metric-eu .metric-meta span {
  background: #14865e;
}
.home-evidence-card .metric-meta time {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.home-evidence-card strong {
  display: block;
  margin: 27px 0 12px;
  color: #82e2c4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 50px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.home-evidence-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.home-evidence-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.65;
}
.home-evidence-card a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #80dfc1;
  font-size: 9px;
  font-weight: 800;
}

/* Data hub feature inside the insights index */
.data-hub-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.data-hub-feature-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 330px;
  padding: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #0b221a;
  background-size: 42px 42px;
}
.data-hub-feature-visual div {
  display: flex;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}
.data-hub-feature-visual span {
  color: #79dcbc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.data-hub-feature-visual strong {
  margin-top: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.data-hub-feature-copy {
  display: flex;
  padding: clamp(32px, 5vw, 58px);
  flex-direction: column;
  justify-content: center;
}
.data-hub-feature-copy > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.data-hub-feature-copy h2 {
  max-width: 650px;
  margin: 17px 0 15px;
  font-size: clamp(31px, 3.6vw, 47px);
  line-height: 1;
}
.data-hub-feature-copy p {
  max-width: 660px;
  margin: 0 0 25px;
}
.data-hub-feature-copy a {
  width: max-content;
}

@media (max-width: 1080px) {
  .data-hero-grid,
  .home-evidence-layout {
    grid-template-columns: 1fr;
  }
  .data-edition-panel {
    min-height: 0;
  }
  .data-method-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 22px;
  }
  .data-method-grid > strong {
    grid-column: 1 / -1;
  }
  .evidence-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .evidence-metric-card {
    min-height: 500px;
  }
  .home-evidence-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .data-hub-hero {
    padding: 30px 0 60px;
  }
  .data-hero-grid {
    gap: 34px;
    margin-top: 34px;
  }
  .data-hero-copy h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }
  .data-hero-copy > p {
    font-size: 14px;
  }
  .data-hero-actions .button {
    width: 100%;
  }
  .data-edition-panel {
    padding: 27px;
    border-radius: 22px;
  }
  .data-edition-panel > strong {
    font-size: 78px;
  }
  .data-method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .data-method-grid > strong {
    grid-column: 1 / -1;
  }
  .data-method-grid > span {
    white-space: normal;
  }
  .evidence-region-section,
  .data-watch-section {
    padding-block: 64px;
  }
  .region-section-heading,
  .regional-brief-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .region-section-heading h2,
  .regional-brief-heading h2,
  .data-watch-heading h2 {
    font-size: clamp(35px, 10vw, 45px);
  }
  .evidence-metric-grid,
  .data-watch-grid,
  .regional-path-grid,
  .home-evidence-grid,
  .data-hub-feature {
    grid-template-columns: 1fr;
  }
  .evidence-metric-card,
  .data-watch-grid article,
  .regional-path-card,
  .home-evidence-card {
    min-height: 0;
  }
  .evidence-metric-card {
    padding: 23px;
  }
  .metric-decision {
    margin-bottom: 26px;
  }
  .regional-path-card {
    padding: 27px;
    border-radius: 22px;
  }
  .regional-path-card h3 {
    font-size: 26px;
  }
  .regional-path-card .button {
    width: 100%;
  }
  .home-evidence-section {
    padding: 64px 0;
  }
  .home-evidence-copy h2 {
    font-size: clamp(37px, 10.8vw, 48px);
  }
  .home-evidence-actions .button {
    width: 100%;
  }
  .home-evidence-card {
    padding: 23px;
  }
  .data-hub-feature-visual {
    min-height: 280px;
    padding: 22px;
  }
  .data-hub-feature-copy {
    padding: 29px;
  }
}

@media (min-width: 1081px) {
  .trusted-logo-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(18px, 2.7vw, 40px);
  }
}
@media (min-width: 761px) and (max-width: 1080px) {
  .trusted-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.trusted-logo-grid .petrol-ofisi-logo img {
  max-width: 126px;
}
@media (max-width: 760px) {
  .trusted-logo-grid .petrol-ofisi-logo {
    grid-column: 1 / -1;
  }
}

/* V2.5 independent digital-signage.co wordmark */
.site-wordmark {
  width: max-content;
  min-width: 0;
  gap: 10px;
  color: var(--ink);
}

.site-wordmark .brand-mark {
  flex: 0 0 25px;
}

.site-wordmark .wordmark-copy {
  min-width: 0;
  gap: 4px;
}

.site-wordmark .wordmark-name {
  color: currentColor;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: lowercase;
  white-space: nowrap;
}

.site-wordmark .wordmark-name span {
  color: var(--green);
}

.site-wordmark small {
  color: #68766f;
  font-size: 6.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.site-footer .brand-light.site-wordmark {
  width: max-content;
  padding: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
}

.site-footer .site-wordmark small {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .site-wordmark .brand-mark i {
  background: #40c69c;
}

.mobile-menu .mobile-menu-cta,
.mobile-menu > a:last-child {
  margin-top: 10px;
  padding: 17px 20px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 14px;
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .desktop-nav {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .site-wordmark .wordmark-name {
    font-size: 17px;
  }

  .site-wordmark small {
    font-size: 6px;
    letter-spacing: 0.14em;
  }
}

/* V2.5 knowledge platform and lead-tool system */
.tool-hero {
  padding-bottom: 78px;
}

.tool-hero > .shell > p {
  max-width: 790px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: 30px;
  color: #557068;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-line span {
  color: var(--green);
}

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

.tool-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(10, 39, 30, 0.045);
}

.tool-card > span,
.section-kicker,
.roi-results > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tool-card h2,
.tool-card h3 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tool-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.tool-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #4c5c56;
  font-size: 11px;
  list-style: none;
}

.tool-card li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--green);
  font-weight: 800;
}

.tool-card .button,
.tool-card .inline-link {
  margin-top: auto;
}

.home-planning-tools {
  padding-top: 90px;
  background: #f7faf8;
}

.home-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-tool-grid .tool-card {
  min-height: 286px;
  padding: 27px;
}

.home-tool-grid .tool-card h3 {
  font-size: 24px;
}

.tool-split,
.roi-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 36px;
}

.check-grid div,
.consult-agenda div {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfcfb;
}

.check-grid strong,
.consult-agenda strong {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
}

.check-grid span,
.consult-agenda span {
  color: #4f5e59;
  font-size: 11px;
  line-height: 1.5;
}

.method-note,
.roi-disclaimer {
  padding: 17px 19px;
  border-left: 3px solid var(--green);
  color: #5a6863;
  background: #f1f7f4;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.consult-agenda {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.consult-agenda div {
  align-items: center;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #52625c;
  font-size: 14px;
  text-align: center;
}

.form-status.is-success {
  color: var(--green-dark);
  font-weight: 700;
}

.form-status.is-error {
  color: #a02d2d;
  font-weight: 700;
}

.lead-form.is-submitting {
  opacity: 0.72;
  pointer-events: none;
}

.roi-inputs {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.roi-calculate {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.roi-results {
  position: sticky;
  top: 110px;
  padding: 42px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #06281e, #091a15);
  box-shadow: 0 28px 80px rgba(5, 28, 21, 0.2);
}

.roi-results h2 {
  margin: 12px 0 30px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 38px;
}

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

.roi-result-grid > div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.roi-result-grid .wide {
  grid-column: 1 / -1;
}

.roi-result-grid small {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.roi-result-grid strong {
  color: #8ae1c5;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
}

.roi-results details {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.roi-results summary {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.roi-results details p,
.roi-results .roi-disclaimer {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  line-height: 1.7;
}

.roi-results .roi-disclaimer {
  margin-top: 22px;
  border-left-color: #64d5b1;
  background: rgba(255, 255, 255, 0.06);
}

.compact-lead {
  padding: 34px;
}

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

.ecosystem-grid article {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.ecosystem-grid article > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ecosystem-grid h3 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.ecosystem-grid p {
  min-height: 90px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.ecosystem-grid a {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
}

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

.four-paths .contact-card {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .home-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tool-split,
  .roi-workspace {
    grid-template-columns: 1fr;
  }
  .roi-results {
    position: static;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  .ecosystem-grid p {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .tool-hero {
    padding-bottom: 54px;
  }
  .tool-card-grid,
  .home-tool-grid,
  .four-paths,
  .check-grid,
  .roi-result-grid {
    grid-template-columns: 1fr;
  }
  .tool-card,
  .home-tool-grid .tool-card {
    min-height: 0;
    padding: 24px;
  }
  .tool-card .button {
    width: 100%;
  }
  .roi-inputs,
  .roi-results,
  .compact-lead {
    padding: 24px;
    border-radius: 20px;
  }
  .roi-result-grid .wide {
    grid-column: auto;
  }
  .trust-line {
    display: grid;
  }
}

/* V2.6 editorial blog and long-form article system */
.blog-index-page {
  background: #fff;
}

.blog-hero {
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -280px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 122, 92, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(11, 122, 92, 0.025),
    0 0 0 160px rgba(11, 122, 92, 0.018);
  pointer-events: none;
}

.blog-hero > .shell {
  position: relative;
  z-index: 1;
}

.blog-hero > .shell > p {
  max-width: 850px;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.blog-start-section {
  background: #f7faf8;
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 16px;
}

.blog-feature-card {
  min-height: 390px;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11, 122, 92, 0.04), transparent 56%),
    #fff;
  display: flex;
  flex-direction: column;
}

.blog-feature-card > span,
.blog-card-copy > span,
.editorial-method-grid > div:first-child > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-feature-card h2 {
  margin: 24px 0 15px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.blog-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.blog-feature-card a,
.blog-card-copy a,
.blog-path-grid a,
.editorial-method-grid a {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 28px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}

.blog-feature-dark {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(86, 225, 179, 0.18), transparent 32%),
    var(--dark);
}

.blog-feature-dark > span,
.blog-feature-dark a {
  color: #78d7b9;
}

.blog-feature-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.blog-library-section {
  background: #fff;
}

.home-insights-section {
  background: #f7faf8;
}

.home-blog-grid .blog-card-copy h2 {
  font-size: 27px;
}

.blog-hub-feature-card {
  background: #f7faf8;
}

.blog-hub-feature-visual {
  min-height: 260px;
  margin: -1px -1px 26px;
  padding: 28px;
  border-radius: 18px 18px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(120, 215, 185, 0.23), transparent 29%),
    linear-gradient(135deg, #061d17, #0c4d3c);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-hub-feature-visual span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 70px;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.blog-hub-feature-visual strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.blog-hub-feature-visual small {
  color: #78d7b9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(10, 44, 34, 0.08);
}

.blog-card-visual {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-card-visual::before,
.blog-card-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.blog-card-visual::before {
  top: -75px;
  right: -35px;
  width: 190px;
  height: 190px;
}

.blog-card-visual::after {
  top: -38px;
  right: 2px;
  width: 115px;
  height: 115px;
}

.blog-card-visual > span {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 9px;
  font-weight: 800;
}

.blog-card-visual strong {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.blog-card-visual small {
  position: relative;
  z-index: 1;
  margin-top: 13px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.accent-mint { background: linear-gradient(135deg, #083e31, #0b7a5c); }
.accent-blue { background: linear-gradient(135deg, #092b42, #186690); }
.accent-orange { background: linear-gradient(135deg, #5b2b10, #bf6824); }
.accent-red { background: linear-gradient(135deg, #471a1e, #a23945); }
.accent-violet { background: linear-gradient(135deg, #262047, #6752a4); }
.accent-teal { background: linear-gradient(135deg, #0d3e41, #178b83); }
.accent-slate { background: linear-gradient(135deg, #1f2c31, #586e77); }
.accent-yellow { color: #14241f; background: linear-gradient(135deg, #e6ad24, #f4d56d); }
.accent-pink { background: linear-gradient(135deg, #48223e, #a13c7c); }
.accent-green { background: linear-gradient(135deg, #17351d, #4f8f4f); }

.blog-card-copy {
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.blog-card-copy h2 {
  margin: 15px 0 12px;
  font-size: 25px;
  line-height: 1.08;
}

.blog-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.blog-paths-section {
  background: #f2f7f4;
}

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

.blog-path-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid #d7e3dd;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
}

.blog-path-grid article > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.blog-path-grid h3 {
  margin: 30px 0 13px;
  font-size: 28px;
}

.blog-path-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.blog-evidence-section {
  color: #fff;
  background: var(--dark);
}

.blog-evidence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.blog-evidence-grid h2 {
  margin: 20px 0;
  font-size: clamp(40px, 5vw, 66px);
}

.blog-evidence-grid > div:first-child > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.blog-evidence-grid .eyebrow {
  color: #78d7b9;
}

.blog-evidence-grid .button-secondary {
  color: var(--ink);
}

.blog-evidence-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.blog-evidence-stats > div {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.blog-evidence-stats span {
  color: #78d7b9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.blog-evidence-stats strong {
  display: block;
  margin: 35px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.blog-evidence-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.6;
}

.editorial-method-section {
  background: #fff;
}

.editorial-method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 8vw, 110px);
}

.editorial-method-grid h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 62px);
}

.editorial-method-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
}

/* Long-form article components */
.article-hero-card {
  min-height: 430px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 15%, rgba(105, 225, 187, 0.22), transparent 28%),
    linear-gradient(145deg, #061d17, #0d4436);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-hero-card > span {
  color: #78d7b9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.article-hero-card strong {
  display: block;
  max-width: 480px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.article-hero-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.article-layout > div,
.article-body,
.article-prose {
  min-width: 0;
}

.article-prose > p,
.article-block li,
.article-prose li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.article-block p + p,
.article-block p + ul,
.article-block p + ol,
.article-block ul + p,
.article-block ol + p,
.article-block h3 + p,
.article-prose p + p {
  margin-top: 16px;
}

.article-block h3,
.article-prose h3 {
  margin: 30px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  line-height: 1.2;
}

.article-block ul,
.article-block ol,
.article-prose ul,
.article-prose ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-block li + li,
.article-prose li + li {
  margin-top: 8px;
}

.article-mobile-toc,
.article-toc-mobile {
  display: none;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.article-mobile-toc summary,
.article-toc-mobile summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.article-mobile-toc > div,
.article-toc-mobile > div,
.article-mobile-toc > nav,
.article-toc-mobile > nav {
  padding: 0 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-mobile-toc a,
.article-toc-mobile a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.article-callout,
.editorial-note,
.article-scope-note {
  margin: 26px 0;
  padding: 26px 28px;
  border: 1px solid #cfe2d8;
  border-radius: 17px;
  background: #f2f8f5;
}

.article-callout strong,
.editorial-note strong,
.article-scope-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-callout p,
.editorial-note p,
.article-scope-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.article-scope-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.article-checklist {
  margin: 22px 0 !important;
  padding: 4px 0 !important;
  list-style: none;
  counter-reset: article-check;
}

.article-checklist li {
  position: relative;
  margin: 0 !important;
  padding: 13px 12px 13px 42px;
  border-bottom: 1px solid var(--line);
  counter-increment: article-check;
}

.article-checklist li::before {
  content: counter(article-check, decimal-leading-zero);
  position: absolute;
  top: 15px;
  left: 8px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.article-table-wrap {
  width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.article-table-wrap table,
.article-prose table,
.article-block table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  text-align: left;
}

.article-table-wrap caption,
.article-prose table caption,
.article-block table caption {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.article-table-wrap th,
.article-table-wrap td,
.article-prose table th,
.article-prose table td,
.article-block table th,
.article-block table td {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  font-size: 11px;
  line-height: 1.65;
}

.article-table-wrap th,
.article-prose table th,
.article-block table th {
  color: var(--ink);
  background: #f5f8f6;
  font-weight: 800;
}

.source-list,
.article-sources {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: sources;
}

.source-list li,
.article-sources li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--line);
  counter-increment: sources;
}

.source-list li::before,
.article-sources li::before {
  content: counter(sources, decimal-leading-zero);
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.source-list a,
.article-sources a {
  color: var(--green-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

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

.related-article-grid article,
.related-article-grid > a {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.related-article-grid span {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.related-article-grid h3 {
  margin: 20px 0 12px;
  font-size: 21px;
}

.related-article-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.related-article-grid a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
}

.related-article-grid > a strong {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.related-article-grid > a span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
}

.related-articles {
  margin: 62px 0;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.related-articles > h2 {
  margin: 0;
  font-size: 35px;
}

.article-scope-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 25px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--line);
}

.article-scope-bar > div {
  padding: 16px 18px;
  background: #fff;
}

.article-scope-bar span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-scope-bar strong {
  font-size: 11px;
}

.article-content [id] {
  scroll-margin-top: 120px;
}

.related-insight-strip {
  padding: 66px 0;
  color: #fff;
  background: linear-gradient(135deg, #061d17, #0c3c30);
}

.related-insight-strip > .shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
}

.related-insight-strip > .shell > div:first-child > span {
  color: #78d7b9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.related-insight-strip h2 {
  margin: 15px 0 12px;
  font-size: clamp(33px, 4vw, 50px);
}

.related-insight-strip p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.75;
}

.related-insight-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.related-insight-links a {
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.2s, border-color 0.2s;
}

.related-insight-links a:hover {
  border-color: rgba(120, 215, 185, 0.48);
  background: rgba(120, 215, 185, 0.1);
}

@media (max-width: 1080px) {
  .blog-feature-grid,
  .blog-evidence-grid,
  .editorial-method-grid,
  .related-insight-strip > .shell {
    grid-template-columns: 1fr;
  }

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

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

  .blog-feature-card {
    min-height: 300px;
  }

  .article-mobile-toc,
  .article-toc-mobile {
    display: block;
  }
}

@media (max-width: 760px) {
  .blog-hero-actions,
  .blog-hero-actions .button {
    width: 100%;
  }

  .blog-grid,
  .blog-path-grid,
  .blog-evidence-stats,
  .related-article-grid,
  .article-scope-bar {
    grid-template-columns: 1fr;
  }

  .blog-feature-card,
  .blog-path-grid article {
    min-height: 0;
  }

  .blog-card-visual {
    min-height: 170px;
  }

  .blog-card-copy h2 {
    font-size: 23px;
  }

  .blog-evidence-stats > div {
    min-height: 170px;
  }

  .article-hero-card {
    min-height: 330px;
  }

  .article-callout,
  .editorial-note,
  .article-scope-note {
    padding: 22px;
  }
}
