/* ===========================
   COMMON.CSS — Base + Layout (Clean)
   =========================== */

/* ========== CSS VARIABLES ========== */
:root {
  --gc-cta: #C4F222;
  --gc-cta-ink: #0B0B0E;
  --gc-cta-shadow: color-mix(in oklab, var(--gc-cta), transparent 72%);
  --gc-navy: #071C61;
  --gc-radial: radial-gradient(
    133.3% 102.95% at 50.69% 2.24%,
    #00269D 0%,
    #000E3B 100%
  );
}

/* ========== RESET BASE ========== */
*,
*::before,
*::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  height: 100%; 
}

html { 
  -webkit-text-size-adjust: 100%; 
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #000E3B;
}

/* Sfondo radiale globale */
body::before {
  content: "";
  position: fixed;
  left: 0; 
  right: 0; 
  top: 0;
  height: 130vh;
  background: var(--gc-radial);
  z-index: -1;
  pointer-events: none;
}

img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #000;
}

/* ========== CONTAINER SYSTEM ========== */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 0;
}

/* Responsive containers */
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 1440px;
    width: 100%;
  }
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 1440px;
    width: 100%;
  }
}

/* ========== BAND + FRAME SYSTEM ========== */
.band { 
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  background: transparent;
}

.band--white { 
  background: #FFFFFF; 
}

.frame {
  position: relative;
  padding: 60px 0;
  z-index: 0;
}

.container-frame {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.30);
  border-right: 1px solid rgba(255, 255, 255, 0.30);
}

.band--white .container-frame {
  border-color: rgba(0, 0, 0, 0.12);
}

.no-padding {
  padding: 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .frame { 
    padding: 32px 0; 
  }
  .container-frame { 
    padding: 32px 0; 
  }
}

/* ========== HEADER ========== */
.site-header {
  --line: rgba(255,255,255,.18);
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: transparent;
  transition: background .28s ease, box-shadow .28s ease;
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.site-header.is-solid {
  background: var(--gc-radial);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset;
}

.site-header .container-frame {
  padding: 0;
}

.site-header .container { 
  position: relative; 
  padding: 0 20px;
}

/* t-mast specific adjustments (used on careers, team, transaction views) 
.t-mast {
  height: 600px; /* overall masthead height 
}*/
/*.t-mast .hero-box {
  height: 540px !important; /* hero box smaller than mast to center content 
}*/

/* Header navigation */
.hc-nav {
  height: 60px;
  display: flex; 
  align-items: center; 
  gap: 18px;
}

.hc-brand img { 
  height: 26px; 
  width: auto; 
  display: block; 
}

.hc-menu {
  list-style: none; 
  margin: 0; 
  padding: 0;
  display: flex; 
  align-items: center; 
  gap: 24px;
  margin-left: clamp(8px, 3vw, 40px);
}

.hc-link {
  color: var(--CG-colors-Grey-White, #FFF);
  text-decoration: none;
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 150% */
  opacity: .92;
  transition: opacity .15s ease, transform .12s ease;
}

.hc-link:hover { 
  opacity: 1; 
  transform: translateY(-1px); 
}

/* Ensure Transactions menu hover matches other menu items */
.nav-transactions > .hc-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Stronger explicit rules to guarantee identical visual behavior */
.nav-transactions > .hc-link {
  color: var(--CG-colors-Grey-White, #FFF) !important;
  text-decoration: none !important;
  font-family: var(--Typography-font-family-caption, Montserrat) !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 21px !important;
  opacity: .92 !important;
  transition: opacity .15s ease, transform .12s ease !important;
  text-shadow: none !important;
  filter: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.nav-transactions > .hc-link:hover,
.nav-transactions > .hc-link.is-active {
  opacity: 1 !important;
  transform: translateY(-1px) !important;
  text-shadow: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.nav-transactions > .hc-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: #C4F222;
  border-radius: 2px;
}

.hc-link.is-active { 
  opacity: 1; 
  position: relative; 
}

.hc-link.is-active::after {
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: -14px; 
  height: 2px; 
  background: #C4F222; 
  border-radius: 2px;
}

/* Header CTA */
.hc-cta {
  margin-left: auto;
  display: inline-flex;
  /* overall button padding: 8px top/bottom, 16px left/right */
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--CG-colors-Highlights-White-30, rgba(255, 255, 255, 0.30));
  color: var(--CG-colors-Grey-White, #FFF);
  text-decoration: none;
  background: transparent;
  /* Button typography */
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 150% */
  /* smoother, much slower transitions (no translateY on button) */
  transition: background .90s cubic-bezier(.2,.8,.2,1),
              color .54s ease;
}

.hc-cta:hover {
  display: inline-flex;
  padding: 8px 16px; /* keep button padding constant */
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--CG-colors-Lime-Lime-5, #C4F222);
  color: var(--gc-cta-ink);
  /* removed translateY to avoid lift effect */
  transition: background .90s cubic-bezier(.2,.8,.2,1),
              color .54s ease;
}

/* Dark variant for CTA used on detail pages: force text and SVG stroke to black */
.hc-cta--dark {
  color: #000;
  background: transparent;
  border: 1px solid rgba(0,0,0,.16);
}
.hc-cta--dark svg {
  stroke: #000;
  color: #000;
}

/* Arrow movement + transition for CTA icons */
.hc-cta svg,
.hc-cta--dark svg {
  transition: transform 1.20s cubic-bezier(.2,.8,.2,1), stroke .18s ease;
  transform: translateX(0);
}

/* Label-specific padding control instead of gap so we animate padding-right from 8px to 16px */
.hc-cta__label {
  display: inline-block;
  padding-right: 8px; /* idle: 8px between label and arrow */
  transition: padding-right .90s cubic-bezier(.2,.8,.2,1);
}
.hc-cta:hover .hc-cta__label {
  padding-right: 16px; /* hover: 16px between label and arrow */
}

/* Reusable transparent lime button */
.btn-trasparente-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--CG-colors-Highlights-White-30, rgba(255,255,255,.30));
  background: transparent;
  color: var(--CG-colors-Grey-White, #FFF);
  text-decoration: none;
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  transition: background .90s cubic-bezier(.2,.8,.2,1), color .54s ease;
}
.btn-trasparente-lime:hover {
  background: var(--CG-colors-Lime-Lime-5, #C4F222);
  color: var(--gc-cta-ink);
}
.btn-trasparente-lime .hc-cta__label {
  padding-right: 8px;
  transition: padding-right .90s cubic-bezier(.2,.8,.2,1);
}
.btn-trasparente-lime:hover .hc-cta__label {
  padding-right: 16px;
}
.btn-trasparente-lime svg {
  transition: transform 1.20s cubic-bezier(.2,.8,.2,1), stroke .18s ease;
}

/* dark variant */
.btn-trasparente-lime--dark {
  color: #000;
  border: 1px solid rgba(0,0,0,.16);
  background: transparent;
}
.btn-trasparente-lime--dark svg { stroke: #000; }

/* Mobile hamburger */
.hc-toggle {
  display: none; 
  margin-left: auto;
  width: 36px; 
  height: 36px; 
  border-radius: 10px;
  background: transparent; 
  border: none;
}

/* Reusable small-square + label discover button used in multiple places */
.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: gap .18s ease !important;
}
.btn-discover:hover { gap: 16px; }
.btn-discover__icon {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--CG-colors-Lime-Lime-5, #C4F222);
  background: var(--CG-colors-Lime-Lime-5, #C4F222);
  transition: background .18s ease, border-color .18s ease;
}
.btn-discover:hover .btn-discover__icon { background: #E6FB8A; border-color: #E6FB8A; }
.btn-discover__icon svg { width: 5.657px; height: 5.657px; aspect-ratio: 1 / 1; stroke-width: 1px; stroke: var(--CG-colors-Grey-Black, #000); fill: none; display: block; }
.btn-discover__label {
  color: var(--CG-colors-Grey-White, #FFF);
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 0;
  margin: 0;
}

/* Transactions section: on hover move only the label, keep the icon visually stable */
.section-transactions .btn-discover { gap: 8px; }
.section-transactions .btn-discover:hover { gap: 8px; }
.section-transactions .btn-discover:hover .btn-discover__label{
  transform: translateX(6px);
  transition: transform .18s ease;
}
.section-transactions .btn-discover__label{ transition: transform .18s ease; display:inline-block; }
.btn-discover__label--dark {
  color: #000;
}
/* Full-bleed horizontal divider that spans the viewport edge-to-edge */
.full-bleed-line {
  position: relative;
  height: 1px;
  background: rgba(0, 0, 0, 0.06); /* neutral thin rule */
  margin: 0 0 80px 0; /* container-frame will control vertical spacing */
}
.full-bleed-line::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: inherit;
}
/* Reusable small-square + label button (used by sticky steps / discover)
   - .cg-btn: wrapper (inline-flex)
   - .cg-btn__icon: the small square (green background + border)
   - .cg-btn__label: textual label (white)
   Behavior: gap 8px idle -> 16px on hover; only the square changes background on hover.
*/
.cg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* idle spacing between square and label */
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.cg-btn:hover {
  gap: 16px; /* expanded spacing on hover */
}

.cg-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px; /* square padding */
  border-radius: 4px;
  border: 1px solid var(--gc-cta, #C4F222);
  background: var(--gc-cta, #C4F222);
  transition: background .18s ease, border-color .18s ease;
}

/* icon svg sizing and ink color */
.cg-btn__icon svg {
  width: 5.657px;
  height: 5.657px;
  display: block;
  transform: rotate(45deg);
  stroke-width: 1px;
  stroke: var(--gc-cta-ink, #0B0B0E);
  fill: none;
}

.cg-btn__label {
  color: var(--CG-colors-Grey-White, #FFF);
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  display: inline-block;
}

/* Hovering the whole link (or the label) lights only the square */
.cg-btn:hover .cg-btn__icon {
  background: #E6FB8A; /* lighter lime */
  border-color: #E6FB8A;
}


.hc-toggle .hc-bar {
  display: block; 
  width: 18px; 
  height: 2px; 
  margin: 5px auto; 
  background: #fff; 
  border-radius: 2px;
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .hc-toggle { 
    display: grid; 
    place-items: center; 
  }

  .hc-nav .hc-cta { 
    display: none; 
  }
  
  .hc-menu {
    position: fixed; 
    inset: 64px 0 auto 0;
    background: var(--gc-radial);
    border-top: 1px solid var(--line);
    display: none; 
    flex-direction: column; 
    align-items: flex-start;
    padding: 14px 18px; 
    gap: 14px;
  }
  
  .hc-menu.is-open { 
    display: flex; 
  }
}

/* Header submenu system */
.hc-menu > li.has-sub > .hc-link {
  position: relative;
}

.hc-menu > li.has-sub:hover > .hc-link,
.hc-menu > li.has-sub:focus-within > .hc-link {
  color: #fff;
}

.hc-menu > li.has-sub > .hc-link::after {
  content: ""; 
  position: absolute; 
  left: 0px; 
  right: 0px; 
  bottom: -21px;
    height: 1px;
    border-radius: 0;
  background: var(--gc-cta);
  transform: scaleX(0); 
  transform-origin: center; 
  transition: transform .18s ease;
}

.hc-menu > li.has-sub:hover > .hc-link::after,
.hc-menu > li.has-sub:focus-within > .hc-link::after { 
  transform: scaleX(1); 
}

.hc-menu > li { 
  position: relative; 
}
.has-sub{
  padding: 60px 0;
}
.hc-sub {
  width: 347px !important;
  height: 198px;
  position: absolute;
  top: 127px;
  background: #fff;
  color: var(--gc-cta-ink);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 20;

}

.has-sub:hover > .hc-sub,
.has-sub:focus-within > .hc-sub {
  opacity: 1; 
  pointer-events: auto; 
  transform: translateY(0);
}

.hc-subitem {
  display: grid;
  grid-template-columns: 63px 1fr 13px;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease, transform .12s ease;
  width: 307px;
  padding-right: 20px;
  height: 50px;
}

.hc-subitem + .hc-subitem { 
  margin-top: 6px; 
}

.hc-subitem:hover { 
  background: var(--CG-colors-Shadows-Black-5, rgba(0, 0, 0, 0.05));
}

.hc-subitem .ico {
  width: 50px;
  padding: 8px;
  height: 50px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--gc-radial);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hc-subitem .ico img { 
    width: 23.8px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.hc-subitem .txt {
  color: var(--CG-colors-Grey-Black, #000);
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 150% */
  /* neutralize visual effects that alter text rendering */
  text-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  box-shadow: none !important;
  text-transform: none !important;
}

.hc-subitem .chev {
  font-size: 18px;
  color: #0B0B0E;
  opacity: .8;
  transform: translateX(0);
  transition: transform .15s ease, opacity .15s ease;
}

.hc-subitem:hover .chev {
  opacity: 1;
}

/* SVG arrow override: force requested visual size and stroke style */
.hc-subitem .chev svg {
  width: 10px;
  height: 12px;
  display: block; /* avoid baseline shifts */
}

.hc-subitem .chev svg path,
.hc-subitem .chev svg line,
.hc-subitem .chev svg polyline,
.hc-subitem .chev svg polygon {
  stroke-width: 1.5px;
  stroke: var(--CG-colors-Grey-Black, #000);
  fill: none; /* ensure only stroke is visible */
}

/* Mobile submenu */
@media (max-width: 992px) {
  .hc-menu { 
    gap: 10px; 
  }
  
  .hc-menu > li.has-sub { 
    width: 100%; 
  }
  
  .hc-menu > li.has-sub > .hc-link::after { 
    display: none; 
  }
  
  .hc-sub {
    position: static; 
    width: 100%;
    opacity: 1; 
    pointer-events: auto; 
    transform: none;
    padding: 8px; 
    margin-top: 6px;
    background: rgba(255,255,255,.96);
  }
  
  .hc-subitem { 
    padding: 10px; 
  }
  
  .hc-menu:not(.show-sub) .hc-sub { 
    display: none; 
  }
  
  .hc-menu .has-sub.open .hc-sub { 
    display: block; 
  }
}

/* ========== FOOTER ========== */
.site-footer {
  --line: rgba(255,255,255,.12);
  --muted: rgba(255,255,255,.72);
  --txt: rgba(255,255,255,.92);
  color: #fff;
  background: rgba(0, 8, 35, 1);
  padding: 0;
}


.ft-col { 
  padding: 0; 
  height: 722px;
  padding-top: 80px;
}

.ft-col.with-divider { 
  border-left: 1px solid var(--line); 
}

/* Footer brand */
.ft-brand { 
  padding-left: 21px;
}

.ft-logo { 
  display: block;
    margin-bottom: 14px;
    width: 180px;
    height: 11
}

.ft-cities { 
  font: 600 12px/1.2 'Montserrat',system-ui; 
  letter-spacing: .1em; 
  color: var(--muted); 
}

/* Footer content blocks */
.ft-block{ 
  position: relative;
  padding-left: 21px;
}
.ft-block ul{
  padding: 0;
}
.ft-title {
  color: var(--CG-colors-Grey-White, #FFF);
font-family: var(--Typography-font-family-body, Montserrat);
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
margin-bottom: 21px;
}

.ft-title::before {
  content: "";
    position: absolute;
    left: 0px;
    top: 5px;
    width: 1px;
    height: 14px;
    border-radius: 0;
    background: #C4F222;
}

/* Footer links */
.ft-links { 
  list-style: none; 
  color: var(--CG-colors-Highlights-White-80, rgba(255, 255, 255, 0.80));
font-family: var(--Typography-font-family-body, Montserrat);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px; /* 150% */
}

.ft-links li+li { 
  margin-top: 8px; 
}

.ft-links a {
  display: inline-block;
  color: var(--txt); 
  text-decoration: none;
  font: 500 14px/1.5 'Montserrat',system-ui;
  opacity: .9; 
  transition: opacity .15s ease, transform .15s ease;
}

.ft-links a:hover { 
  opacity: 1; 
  transform: translateX(5px); 
}

/* Footer heading with social */
.ft-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ft-heading-row .ft-title { 
  margin: 0; 
}
.ft-social{
      margin-right: 20px;
    margin-bottom: 8px;
}

/* Footer CTA section */
.ft-cta-col {
  border-left: 1px solid var(--line);
  padding-top: clamp(12px, 1.6vw, 18px);
  display: flex;
  align-items: flex-start;
}

.ft-cta-bar {
  display: flex; 
  align-items: center;
  gap: 14px; 
  flex-wrap: wrap;
}

.ft-cta-lead {
  margin: 0; 
  flex: 1 1 280px;
  font: 600 15px/1.4 'Montserrat',system-ui; 
  color: #fff;
}

.ft-newsletter {
  display: flex; 
  align-items: center; 
  gap: 10px;
  flex: 1 1 360px; 
  width: 100%;
}

.ft-nl-input {
  flex: 1 1 auto; 
  min-width: 0;
  padding: 14px 16px; 
  border-radius: 12px;
  background: #0b0b0e; 
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.ft-nl-input::placeholder { 
  color: rgba(255,255,255,.66); 
}

.ft-nl-btn {
  width: 46px; 
  height: 46px; 
  border-radius: 12px;
  display: grid; 
  place-items: center; 
  color: #fff;
  background: #0b0b0e; 
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .12s ease, background .15s ease;
}

.ft-nl-btn:hover { 
  transform: translateY(-1px); 
  background: #131316; 
}

/* Footer small CTA (Get in touch) */
.ft-cta {
    max-width: 620px;
    position: absolute;
}
.ft-cta-title {
  width: 165%;
    position: absolute;
    color: var(--CG-colors-Grey-White, #FFF);
    font-family: var(--Typography-font-family-body, Montserrat);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.ft-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 43px;
}
.ft-cta-input {
  flex: 1 1 auto;
  padding: 14px 18px;
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--CG-colors-Highlights-White-30, rgba(255, 255, 255, 0.30));
  background: var(--CG-colors-Blue-Blue-10, #00020A);
  display: flex;
  width: 165%;
  align-items: center;
  flex-shrink: 0;
  color: var(--CG-colors-Grey-White, #FFF);
font-family: var(--Typography-font-family-body, Montserrat);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px; /* 150% */
}
.ft-cta-input::placeholder { color: #FFF; }
.ft-cta-btn{
  display: flex;
  width: 49px;
  height: 49px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--CG-colors-Highlights-White-30, rgba(255, 255, 255, 0.30));
  background: var(--CG-colors-Blue-Blue-10, #00020A);
}
.ft-cta-btn:hover{ background: var(--CG-colors-Lime-Lime-5, #C4F222);}
.ft-cta-btn svg{
width: 12px;
height: 12px;
flex-shrink: 0;
aspect-ratio: 1/1;
stroke-width: 1.5px;
color: white;
}
@media (max-width: 768px){
  .ft-cta-row{ flex-direction: column; align-items: stretch; }
  .ft-cta-btn{ width: 100%; }
}

/* When the footer CTA wrapper is hovered or focused, invert to lime backgrounds
   for the row and the button, and ensure placeholder text and SVG ink are black. */
.ft-cta:hover .ft-cta-row,
.ft-cta:focus-within .ft-cta-row {
  background: transparent;
}

.ft-cta:hover .ft-cta-btn,
.ft-cta:focus-within .ft-cta-btn {
  background: var(--CG-colors-Lime-Lime-5, #C4F222);
  border-color: var(--CG-colors-Lime-Lime-5, #C4F222);
}

/* Placeholder color (include vendor fallbacks) */
.ft-cta:hover .ft-cta-input::placeholder,
.ft-cta:focus-within .ft-cta-input::placeholder {
  color: #000;
  opacity: 1;
}
.ft-cta:hover .ft-cta-input::-webkit-input-placeholder,
.ft-cta:focus-within .ft-cta-input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.ft-cta:hover .ft-cta-input::-moz-placeholder,
.ft-cta:focus-within .ft-cta-input::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.ft-cta:hover .ft-cta-input:-ms-input-placeholder,
.ft-cta:focus-within .ft-cta-input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.ft-cta:hover .ft-cta-input::-ms-input-placeholder,
.ft-cta:focus-within .ft-cta-input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

/* Ensure typed text is legible when the row switches to lime */
.ft-cta:hover .ft-cta-input,
.ft-cta:focus-within .ft-cta-input {
  color: #000;
  background: var(--CG-colors-Lime-Lime-5, #C4F222);
}

/* SVG/icon ink inside the CTA button should turn black on hover/focus-within */
.ft-cta:hover .ft-cta-btn svg,
.ft-cta:focus-within .ft-cta-btn svg {
  stroke: #000;
  color: #000;
  fill: none;
}

/* Footer bottom bar */
.ft-bottom {
  position: relative;
  padding: 80px 20px;
  border-top: 1px solid var(--line);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 14px; 
  color: var(--muted);
  font: 500 13px/1.6 'Montserrat',system-ui;
}

.ft-legal { 
  list-style: none; 
  display: flex; 
  gap: 24px; 
  margin: 0; 
  padding: 0; 
}

.ft-legal a { 
    color: var(--CG-colors-Grey-White, #FFF);
    font-family: var(--Typography-font-family-caption, Montserrat);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.ft-legal a:hover { 
  color: #fff; 
}

/* vertical ruler placed 390px from the right edge of .ft-bottom */
.ft-bottom::before {
  content: "";
    position: absolute;
    right: 359px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line, rgba(255, 255, 255, 0.15));
    pointer-events: none;
}

@media (max-width: 991.98px) {
  .ft-bottom::before { display: none; }
}

/* Footer copy styles */
.ft-copy { 
  display: flex;
  align-items: center;
  gap: 0; /* we'll use margin-left on children */
  flex-wrap: wrap;
}


.ft-copy span,
.ft-copy a {
  margin-left: 20px;
  color: var(--CG-colors-Highlights-White-80, rgba(255, 255, 255, 0.80));
  /* Caption 2 */
  font-family: var(--Typography-font-family-caption, Montserrat);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  text-decoration: none;
}
.ft-copy-main {
  color: var(--CG-colors-Grey-White, #FFF) !important;
}
.ft-copy a:hover { text-decoration: none; }

/* Footer responsive */
@media (max-width: 991.98px) {
  .ft-col.with-divider { 
    border-left: none; 
    border-top: 1px solid var(--line); 
  }
  
  .ft-title::before { 
    left: 0; 
    transform: translateX(-8px); 
  }
  
  .ft-social { 
    justify-content: flex-start; 
  }
  
  .ft-bottom { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  
  .ft-cta-col { 
    border-left: none; 
    border-top: 1px solid var(--line); 
  }
  
  .ft-cta-bar { 
    gap: 12px; 
  }
  
  .ft-cta-lead, .ft-newsletter { 
    flex: 1 1 100%; 
  }
}

/* ========== UNIFIED CTA STYLING ========== */
.gc-btns :is(
  button,
  .btn,
  [class*="btn"],
  [class*="cta"],
  .open-ico,
  a.hc-cta,
  a.ft-nl-btn,
  a.btn-read
) {
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
  will-change: transform;
}

.gc-btns :is(
  button,
  .btn,
  [class*="btn"],
  [class*="cta"],
  .open-ico,
  a.hc-cta,
  a.ft-nl-btn,
  a.btn-read
):focus-visible {
  outline: 2px solid var(--gc-cta);
  outline-offset: 2px;
}

.gc-btns :is(
  button,
  .btn,
  [class*="btn"],
  [class*="cta"],
  .open-ico,
  a.hc-cta,
  a.ft-nl-btn,
  a.btn-read
) svg {
  color: currentColor;
  fill: none;
  stroke: currentColor;
}

/* News card hover effect */
.gc-btns .news-card:hover .open-ico {
  background: var(--gc-cta);
  color: var(--gc-cta-ink);
  border-color: var(--gc-cta);
}

/* ========== DISCOVER LINK SYSTEM ========== */
.discover, 
.discover-link {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  text-decoration: none; 
  color: inherit;
}

.discover .dot, 
.discover-link .dot {
  width: 20px; 
  height: 20px; 
  border-radius: 3px;
  display: inline-grid; 
  place-items: center;
  background: var(--gc-cta);
  color: var(--gc-cta-ink);
  border: 1px solid rgba(0,0,0,.15);
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.discover .dot svg path, 
.discover-link .dot svg path { 
  stroke: currentColor; 
}

.discover .text, 
.discover-link .label {
  display: inline-block;
  transition: transform .15s ease, color .15s ease;
}

.discover:hover .text,
.discover:focus-visible .text,
.discover-link:hover .label,
.discover-link:focus-visible .label {
  transform: translateX(5px);
}

.discover:hover .dot,
.discover:focus-visible .dot,
.discover-link:hover .dot,
.discover-link:focus-visible .dot {
  transform: translateX(-5px);
  background: var(--gc-cta-ink);
  color: var(--gc-cta);
  border-color: var(--gc-cta-ink);
  box-shadow: 0 10px 24px var(--gc-cta-shadow);
}

.discover:focus-visible, 
.discover-link:focus-visible {
  outline: 2px solid var(--gc-cta); 
  outline-offset: 2px;
}

/* ========== OPEN ICON ========== */
.open-ico {
    position: absolute;
    right: 24px;
    top: 24px;
    border-radius: 8px;
    display: inline-flex;
        padding: 8px;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--CG-colors-Shadows-Black-30, rgba(0, 0, 0, 0.30));
    background: var(--CG-colors-Grey-White, #FFF);
}

/* ========== MOTION SAFE ========== */
@media (prefers-reduced-motion: reduce) {
  .gc-btns :is(
    button, .btn, [class*="btn"], [class*="cta"],
    .open-ico, a.hc-cta, a.ft-nl-btn, a.btn-read
  ) {
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    transform: none !important;
    box-shadow: none !important;
  }
  
  .discover .dot, 
  .discover-link .dot,
  .discover .text, 
  .discover-link .label,
  .ft-links a {
    transform: none !important; 
    box-shadow: none !important;
  }
}

/* ========== TRANSACTIONS PAGE ========== */
.tx-section {
  padding: 0;
}

.tx-h2 {
  font: 800 clamp(28px, 4.2vw, 42px)/1.2 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 0 0 clamp(24px, 3vw, 36px);
  text-align: center;
}

.tx-h3 {
  font: 700 clamp(20px, 2.4vw, 24px)/1.2 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 0 0 16px;
}

/* Featured transactions swiper */
.tx-swiper {
  margin-bottom: clamp(48px, 6vw, 72px);
  overflow: hidden;
}

.tx-swiper .swiper-slide {
  height: auto;
}

.tx-feature {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tx-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.tx-feature-media {
  aspect-ratio: 16/9;
  background: #f8f9fa;
  overflow: hidden;
}

.tx-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tx-feature-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tx-feature-body {
  padding: clamp(20px, 2.4vw, 28px);
}

.tx-tags {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tx-tags--small {
  margin-bottom: 8px;
}

.tx-tag {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(0, 62, 255, .1);
  color: #003EFF;
  font: 600 11px/1.2 'Montserrat', system-ui;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tx-title {
  font: 700 clamp(18px, 2.2vw, 24px)/1.3 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 0 0 12px;
}

.tx-excerpt {
  font: 400 14px/1.5 'Montserrat', system-ui;
  color: rgba(0,0,0,.7);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tx-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 12px/1.2 'Montserrat', system-ui;
  color: #003EFF;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Grid layout */
.tx-grid-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}

.tx-filter {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 24px;
}

.tx-filter-group {
  margin-bottom: 24px;
}

.tx-filter-head {
  font: 600 14px/1.2 'Montserrat', system-ui;
  color: #0B0B0E;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tx-chip {
  display: inline-block;
  padding: 8px 12px;
  background: #f8f9fa;
  color: #6c757d;
  font: 500 12px/1.2 'Montserrat', system-ui;
  border-radius: 6px;
  text-decoration: none;
  transition: all .15s ease;
  border: 1px solid transparent;
}

.tx-chip:hover {
  background: rgba(0, 62, 255, .1);
  color: #003EFF;
  border-color: rgba(0, 62, 255, .2);
}

.tx-chip.is-active {
  background: #003EFF;
  color: #fff;
}

/* Transaction cards grid 
.tx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tx-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tx-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.12);
}

.tx-card-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tx-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tx-card-ph {
  width: 24px;
  height: 24px;
  background: #dee2e6;
  border-radius: 4px;
}

.tx-card-title {
  font: 600 16px/1.3 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 8px 0 0;
}
*/
/* Swiper pagination */
.tx-swiper .swiper-pagination {
  bottom: -40px;
}

.tx-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0,0,0,.2);
  opacity: 1;
}

.tx-swiper .swiper-pagination-bullet-active {
  background: #003EFF;
}

/* Responsive */
@media (max-width: 992px) {
  .tx-grid-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tx-filter {
    position: static;
    order: -1;
  }
  
  .tx-chips {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tx-grid {
    grid-template-columns: 1fr;
  }
  
  .tx-swiper .swiper-slide {
    max-width: 90vw;
  }
}

/* ========== SINGLE TRANSACTION PAGE ========== */

.tx-detail .btn-discover{
  margin: 60px 0 80px 0;
}

.tx-detail-container {
  margin: 0 auto;
  padding: 0;
}
.tx-detail-box{
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 20px 40px;
  margin-bottom: 50%;
}
.tx-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.tx-detail-content {
  max-width: none;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.tx-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tx-detail-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 62, 255, .1);
  color: #003EFF;
  font: 600 12px/1.2 'Montserrat', system-ui;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tx-detail-title {
  font: 800 clamp(28px, 4vw, 42px)/1.2 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 0 0 24px;
}

.tx-detail-text {
  font: 400 16px/1.6 'Montserrat', system-ui;
  color: rgba(0,0,0,.8);
  max-width: 65ch;
  margin-bottom: 24px;
}

.tx-detail-text h2 {
  font: 700 24px/1.3 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 32px 0 16px;
}

.tx-detail-text h3 {
  font: 600 20px/1.3 "Space Grotesk", system-ui;
  color: #0B0B0E;
  margin: 24px 0 12px;
}

.tx-detail-text p {
  margin: 0 0 16px;
}

.tx-detail-text ul {
  margin: 16px 0;
  padding-left: 20px;
}

.tx-detail-text li {
  margin-bottom: 8px;
}

.tx-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  background: #0B0B0E;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font: 600 14px/1.2 'Montserrat', system-ui;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tx-detail-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 11, 14, .3);
}

.tx-detail-sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.tx-detail-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.tx-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tx-detail-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font: 500 14px/1.2 'Montserrat', system-ui;
}

.tx-detail-metas {
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.tx-detail .cta-hp-graphic {
    bottom: -20px;
    left: 40px;
}

.tx-meta {
  display: flex;
    width: 100%;
    height: 95px;
    padding: 24px 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--CG-colors-Grey-Grey-5, #F2F2F2);
    justify-content: center;
}

.tx-meta-label {
  color: var(--CG-colors-Shadows-Black-50, rgba(0, 0, 0, 0.50));
  /* Body 1 */
  font-family: var(--Typography-font-family-body, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}

.tx-meta-value {
  color: var(--CG-colors-Grey-Black, #000);
  /* Body 2 - medium */
  font-family: var(--Typography-font-family-body, Montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

/* Single transaction responsive */
@media (max-width: 992px) {
  .tx-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tx-detail-sidebar {
    position: static;
    order: -1;
  }
  
  .tx-detail-metas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tx-detail-metas {
    grid-template-columns: 1fr;
  }
}

.see-all-slide { position: relative; width: 360px; height: 548px; margin-right: 22px; }
.see-all-slide a:hover{
  color: #000;
}
.news-card--see-all {
  position: absolute;
  width: 360px;
  height: 548px;
  left: 0px;
  top: 0px;
  background: #FFFFFF;
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
      align-items: center !important;
    justify-content: center !important;
}
.news-card--see-all .see-all-title {
  position: absolute;
  width: 328px;
  height: 68px;
  left: 50%;
  transform: translateX(-50%);
  top: 198px;
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  text-align: center;
  color: #000000;
  margin: 0;
}
/* Hover state: gradient + image background as requested */
.news-card--see-all:hover {
  background: var(--Gradient-lime, radial-gradient(191.06% 179.04% at -46.27% 185.22%, #C4F222 0%, var(--CG-colors-Grey-White, #FFF) 100%));
}
.news-card--see-all .see-all-arrow {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 8px;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 290px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  background: transparent;
}
.news-card--see-all .see-all-arrow svg {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  display: block;
}

.see-all-slide:hover .see-all-arrow {
  background: var(--CG-colors-Lime-Lime-5, #c4f22263);
}
.cta-hp-graphic {
  position: absolute;
  bottom: -65px;
  right: 0;
}

/* Slide in/out animation for CTA graphic */
.cta-hp-graphic-inner {
  transition: transform 420ms cubic-bezier(.2,.9,.3,1), opacity 320ms ease;
  will-change: transform, opacity;
}
/* ensure inner is a block-level element so transforms apply cleanly */
.cta-hp-graphic-inner { display: block; }
/* more specific rules to avoid accidental overrides on the inner element */
.cta-hp-graphic-inner.cta-hp-hidden {
  transform: translateY(40px) translateZ(0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.cta-hp-graphic-inner.cta-hp-visible {
  transform: translateY(0) translateZ(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
footer .container-frame{
  padding: 0;
}

/* Styles applied on detail pages (transactions, news, team) */
.site-header--detail {
  background: #fff !important;
  border-bottom: 1px solid #e9ecef;
  color: #000;
}

.container-frame--detail {
  border-left: 1px solid rgba(0, 0, 0, 0.14);
  border-right: 1px solid rgba(0, 0, 0, 0.14);
}

.hc-nav--dark .hc-link,
.hc-nav--dark .hc-cta__label,
.hc-nav--dark .hc-cta{
  color: #000 !important;
}
.hc-nav--dark .hc-toggle .hc-bar {
  background: #000;
}