:root {
  /* Fixed ink / inverse text; surfaces and foregrounds follow the active mode. */
  --black: #202020;
  --white: #e4e4e4;
  --page: #1a1a1a;
  --text: #e4e4e4;
  --black-soft: #202020;
  --panel: #242424;
  --panel-2: #343434;
  --surface-section: #242424;
  --surface-inset: #2d2d2d;
  --dark-surface: #242424;
  --on-dark-muted: #b5b5b5;
  --on-lime-muted: #454b15;
  --nav-bg: rgba(26, 26, 26, .95);
  --overlay-bg: rgba(26, 26, 26, .98);
  --shadow: 0 20px 60px rgba(0, 0, 0, .16);
  --lime: #b7cb16;
  --lime-deep: #647000;
  --accent-text: var(--lime);
  --muted: #b5b5b5;
  --muted-2: #a3a3a3;
  --line: #343434;
  --font-display: "Cal Sans", "Satoshi", sans-serif;
  --font-body: "Satoshi", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wrap: 1180px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --page: #f4f2ec;
  --text: #202020;
  --black-soft: #eeece5;
  --panel: #ffffff;
  --panel-2: #eeece5;
  --surface-section: #ffffff;
  --surface-inset: #f4f2ec;
  --muted: #6d6b5f;
  --muted-2: #6d6b5f;
  --line: #cac9b9;
  --accent-text: var(--lime-deep);
  --nav-bg: rgba(244, 242, 236, .95);
  --overlay-bg: rgba(244, 242, 236, .98);
  --shadow: 0 20px 60px rgba(32, 32, 32, .07);
  color-scheme: light;
  scrollbar-color: var(--muted-2) var(--page);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .42) var(--black); }
html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--black); }
html::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(255, 255, 255, .42); }
body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
html[data-theme="light"] body { color: var(--text); background: var(--page); }
html[data-theme="light"]::-webkit-scrollbar-track { background: var(--page); }
html[data-theme="light"]::-webkit-scrollbar-thumb { background: rgba(8, 8, 8, .38); }
body.admin-bar .site-nav { top: 32px; }
body.admin-bar .mobile-menu { padding-top: 137px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; font-synthesis: none; }
mark { color: var(--lime); background: transparent; }
::selection { color: var(--black); background: var(--lime); }

.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--black);
  background: var(--lime);
  border-radius: 999px;
}

#reading-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: var(--lime);
  pointer-events: none;
}

.wrap { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; }
.section { position: relative; padding: 130px 24px; }
.section-heading { max-width: 780px; margin-bottom: 66px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-title {
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.section-copy { max-width: 580px; margin-top: 22px; color: var(--muted); font-size: 15.5px; }
.section-heading.center .section-copy { margin-right: auto; margin-left: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 1px; background: currentColor; content: ""; }

.btn,
.wpcf7-submit {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn:hover, .btn:focus-visible, .wpcf7-submit:hover { transform: translateY(-3px); }
.btn-lime, .wpcf7-submit { color: var(--black); background: var(--lime); }
.btn-lime:hover, .btn-lime:focus-visible, .wpcf7-submit:hover { box-shadow: 0 14px 36px rgba(183, 203, 22, .28); }
.btn-ghost { color: var(--white); border-color: var(--line); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: rgba(183, 203, 22, .5); background: rgba(183, 203, 22, .08); }
.btn .dashicons { width: 16px; height: 16px; font-size: 16px; }

.site-nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  width: 100%;
  height: 80px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  border-radius: 0;
  background: var(--nav-bg);
  box-shadow: none;
  backdrop-filter: blur(24px);
  transition: background-color .3s, border-color .3s;
}
.site-nav-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 16px; width: 100%; max-width: 1360px; height: 100%; margin: 0 auto; padding: 0 24px; }
.site-nav-actions { display: flex; align-items: center; justify-self: end; gap: 8px; }
.site-logo { display: flex; flex: 0 0 auto; align-items: center; justify-self: start; margin: 0; }
.site-logo-image { width: auto; height: 26px; object-fit: contain; }
.desktop-menu { min-width: 0; justify-self: center; }
.desktop-menu ul, .mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.desktop-menu .menu { display: flex; align-items: center; justify-content: center; gap: 24px; }
.desktop-menu a {
  display: block;
  padding: 8px 0;
  border-radius: 0;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.desktop-menu a:hover, .desktop-menu .current-menu-item > a { color: var(--text); }
.theme-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0;
  color: rgba(250, 250, 248, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.theme-toggle:hover, .theme-toggle:focus-visible { color: var(--white); border-color: rgba(183, 203, 22, .48); background: rgba(183, 203, 22, .09); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 3px solid rgba(183, 203, 22, .22); outline-offset: 2px; }
.theme-toggle .dashicons { width: 16px; height: 16px; color: var(--lime); font-size: 16px; }
.language-switcher { display: inline-flex; flex: 0 0 auto; align-items: center; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel-2); }
.language-switcher-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.language-switcher-link { display: inline-flex; min-width: 29px; height: 27px; align-items: center; justify-content: center; padding: 0 7px; border-radius: 999px; color: var(--muted-2); font-size: 11px; font-weight: 800; line-height: 1; letter-spacing: .08em; transition: color .25s, background .25s, transform .25s; }
.language-switcher-link:hover, .language-switcher-link:focus-visible { color: var(--text); background: color-mix(in srgb, var(--lime) 16%, transparent); transform: translateY(-1px); }
.language-switcher-link.is-current { color: var(--black); background: var(--lime); }
.language-switcher-link.is-current:hover, .language-switcher-link.is-current:focus-visible { color: var(--black); background: var(--lime); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; color: var(--black); border: 0; border-radius: 50%; background: var(--lime); cursor: pointer; }
.menu-toggle .dashicons { width: 22px; height: 22px; font-size: 22px; }
.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: 115px 30px 36px;
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(20px);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu .menu { display: flex; flex-direction: column; gap: 5px; }
.mobile-menu .menu a { display: block; padding: 7px 0; font-family: var(--font-display); font-size: clamp(28px, 9vw, 50px); font-weight: 700; line-height: 1.1; letter-spacing: -.035em; }

/* Asset-specific light-mode treatments; component surfaces use tokens below. */
html[data-theme="light"] .menu-toggle { color: var(--text); }
html[data-theme="light"] .grid-background { background-image: linear-gradient(rgba(8, 8, 8, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 8, 8, .075) 1px, transparent 1px); }
html[data-theme="light"] .feature-card .dashicons,
html[data-theme="light"] .benefit-card .dashicons,
html[data-theme="light"] .security-card .dashicons,
html[data-theme="light"] .license-card .dashicons,
html[data-theme="light"] .data-protection > .dashicons { color: var(--lime-deep); }

.home-hero {
  --hero-dot: #d0d0be;
  --hero-dot-alpha: .42;
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 20px 48px;
  text-align: center;
}
html[data-theme="light"] .home-hero { --hero-dot: #767866; --hero-dot-alpha: .32; }
html .home-hero .grid-background {
  background-image: radial-gradient(circle, var(--hero-dot) 1.25px, transparent 1.6px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
}
.hero-background[hidden] { display: none; }
.home-hero.has-hero-background .grid-background { visibility: hidden; }
.grid-background {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-halo {
  position: absolute;
  top: -25%;
  left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1.6 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(183, 203, 22, .17), rgba(183, 203, 22, .04) 43%, transparent 68%);
  filter: blur(50px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 1220px; transform: translateY(-9px); }
/* Hero highlights inherit the shared light/dark text accent. */
.home-hero h1 { max-width: 1200px; margin: 0 auto 28px; font-size: clamp(52px, 9.4vw, 136px); font-weight: 700; line-height: .98; letter-spacing: -.045em; }
.hero-description { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); line-height: 1.8; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.hero-proof { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 46px; }
.hero-proof > span { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; }
.hero-proof-logo { display: block; max-width: none; padding: 0; border: 0; border-radius: 0; background: transparent; }
/* Show the emblem from the original transparent BCEAO artwork, without its wordmark. */
.hero-proof-bceao { display: block; flex: 0 0 56px; width: 56px; height: 72px; overflow: hidden; }
.hero-proof-bceao .hero-proof-logo { width: auto; height: 72px; }
/* The supplied artwork contains color and monochrome variants; show only the color mark. */
.hero-proof-pci { display: block; flex: 0 0 128px; width: 128px; height: 52px; overflow: hidden; }
.hero-proof-pci .hero-proof-logo { width: 136px; height: 136px; transform: translate(-4px, -16px); }
.hero-proof-copy { display: grid; gap: 3px; text-align: left; }
.hero-proof-copy small { max-width: 190px; font-family: var(--font-body); font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.hero-proof .dashicons { flex: 0 0 18px; width: 18px; height: 18px; color: var(--accent-text); font-family: dashicons; font-size: 18px; font-weight: 400; line-height: 1; letter-spacing: 0; text-transform: none; }

.partner-row:hover .partner-track,
.partner-row:focus-within .partner-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }

.solutions-section { padding-top: 105px; }
.solution-stack { max-width: 1180px; margin: 0 auto; }
.solution-card {
  position: sticky;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(26px, 4vw, 60px);
  margin-bottom: 28px;
  padding: clamp(34px, 4.6vw, 64px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, #141412, #0e0e0c);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, .45);
}
.solution-card.theme-lime { color: var(--black); border-color: var(--lime); background: var(--lime); }
.solution-card.theme-white { color: var(--black); border-color: var(--white); background: var(--white); }
.solution-card.theme-glow { border-color: rgba(183, 203, 22, .38); background: #0d0d0a; }
.solution-index { display: flex; align-items: baseline; gap: 11px; margin-bottom: 22px; color: var(--lime); font-family: var(--font-mono); font-size: clamp(13px, .9vw, 14px); font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.theme-lime .solution-index, .theme-white .solution-index { color: var(--black); }
.solution-audience { opacity: .58; }
.solution-card h3 { margin-bottom: 0; font-size: clamp(34px, 3.8vw, 56px); line-height: 1; letter-spacing: -.04em; }
.solution-card p { max-width: 450px; margin: 18px 0 0; opacity: .67; font-size: 15px; }
.solution-more { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; font-size: 14px; font-weight: 700; }
.solution-more .dashicons { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 17px; transition: transform .3s var(--ease); }
.solution-card:hover .solution-more .dashicons { transform: rotate(-45deg) scale(1.07); }
.solution-visual { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 20px; background: var(--panel-2); box-shadow: 0 40px 90px rgba(0, 0, 0, .3); }
.solution-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.solution-card:hover .solution-visual img { transform: scale(1.045); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card { position: relative; display: flex; min-height: 220px; flex-direction: column; padding: 32px 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); transition: transform .4s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(183, 203, 22, .44); }
.why-card.tall { grid-row: span 2; }
.why-card.wide { grid-column: 1 / -1; min-height: 190px; }
.why-card.light { color: var(--black); border-color: var(--white); background: var(--white); }
.why-card.lime { color: var(--black); border-color: var(--lime); background: var(--lime); }
.card-label { margin-bottom: 14px; color: var(--lime); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.light .card-label, .lime .card-label { color: var(--lime-deep); }
.why-card h3 { margin-bottom: 9px; font-size: 20px; line-height: 1.25; }
.why-card p { margin-bottom: 0; color: var(--muted); font-size: 13.5px; }
.light p, .lime p { color: rgba(0, 0, 0, .62); }
.card-metric { margin: auto 0 8px; color: var(--lime); font-family: var(--font-display); font-size: clamp(55px, 6vw, 82px); font-weight: 700; line-height: 1; letter-spacing: -.05em; }
.light .card-metric { color: var(--lime-deep); }
.why-card.lime .card-metric { color: var(--black); }
.security-compliance-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 28px; margin-top: auto; padding-top: 32px; }
/* Keep provider artwork on white in both themes, preserving its brand colors. */
.why-card.payment-providers { color: var(--black); border-color: #deded5; background: #fff; }
.why-card.payment-providers p { color: #66665d; }
.payment-provider-logos { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); align-items: center; gap: 20px; margin: 26px 0 0; padding: 20px 0 0; border-top: 1px solid #ecece7; list-style: none; }
.payment-provider-logos li { display: flex; height: 80px; min-width: 0; align-items: center; justify-content: center; overflow: hidden; }
.payment-provider-logos img { display: block; width: 100%; max-width: 110px; height: 110px; flex-shrink: 0; object-fit: contain; }

.ecosystem-section { margin: 0 clamp(10px, 1.8vw, 26px); color: var(--black); border-radius: clamp(24px, 3vw, 40px); background: var(--white); }
.ecosystem-section .section-copy { color: rgba(0, 0, 0, .6); }
.eco-grid { display: flex; min-height: 420px; gap: 14px; }
.eco-card { display: flex; flex: 1; flex-direction: column; padding: 35px 31px; overflow: hidden; border: 1px solid rgba(0, 0, 0, .07); border-radius: 26px; background: #f0f0ec; cursor: pointer; transition: flex .65s var(--ease), background .4s; }
.eco-card.is-active, .eco-card:hover { flex: 2.3; }
.eco-card.accent { color: var(--white); border-color: var(--black); background: var(--black); }
.eco-number { color: var(--lime-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 2px; }
.accent .eco-number { color: var(--lime); }
.eco-icon { display: block; width: 96px; height: 96px; flex: 0 0 auto; margin: 28px 0 32px; color: var(--accent-text); }
.eco-card.accent .eco-icon { color: var(--lime); }
.eco-card h3 { margin: auto 0 0; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.035em; }
.eco-card p { max-width: 410px; margin: 14px 0 0; color: rgba(0, 0, 0, .62); opacity: 0; transform: translateY(10px); transition: opacity .4s .12s, transform .4s .12s; }
.eco-card.accent p { color: var(--muted); }
.eco-card.is-active p, .eco-card:hover p { opacity: 1; transform: none; }
.eco-more { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 13px; font-weight: 700; }
.eco-more .dashicons { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 14px; transition: transform .3s var(--ease); }
.eco-card:hover .eco-more .dashicons, .eco-card:focus-visible .eco-more .dashicons { transform: translateX(3px); }

.stats-section { padding-top: 145px; padding-bottom: 65px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat-card { position: relative; padding: 42px 29px 15px; border-right: 1px solid var(--line); }
.stat-card:last-child { border-right: 0; }
.stat-value { font-family: var(--font-display); font-size: clamp(50px, 6vw, 90px); font-weight: 700; line-height: 1; letter-spacing: -.055em; }
.stat-value .plus { color: var(--lime); }
.stat-label { margin-top: 16px; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; font-weight: 700; line-height: 1.8; letter-spacing: 1.6px; text-transform: uppercase; }

.partners-section { padding: 70px 24px 110px; }
.partners-panel { max-width: var(--wrap); margin: 0 auto; overflow: hidden; padding: 70px 0; border-radius: 30px; background: var(--panel); }
.partners-heading { display: grid; grid-template-columns: minmax(280px, 360px) minmax(0, 390px); align-items: start; gap: clamp(32px, 4.5vw, 64px); margin: 0 0 70px; padding: 0 clamp(28px, 7vw, 100px); }
.partners-heading h2 { margin: 0; font-size: clamp(32px, 3vw, 42px); line-height: 1.12; }
.partners-heading p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.partner-row { overflow-x: auto; scrollbar-width: none; }
.partner-row::-webkit-scrollbar { display: none; }
.partner-row:focus-visible { outline: 2px solid var(--accent-text); outline-offset: -2px; }
.partner-track { display: flex; width: max-content; align-items: center; animation: marquee 48s linear infinite; }
.partner-group { display: flex; flex-shrink: 0; gap: 12px; margin: 0; padding: 0 12px 0 0; list-style: none; }
.partner-logo { display: grid; width: clamp(200px, 17vw, 240px); height: 220px; flex: 0 0 auto; place-items: center; padding: 28px; border: 1px solid #deded5; border-radius: 12px; background: #fff; }
.partner-logo img { display: block; width: 100%; max-width: 170px; height: 120px; object-fit: contain; }
.partner-logo span { color: var(--black); font-family: var(--font-body); font-size: 18px; text-align: center; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { padding: 28px 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.testimonial-card .dashicons { width: 30px; height: 30px; color: var(--lime); font-size: 30px; }
.testimonial-card blockquote { margin: 18px 0 24px; color: rgba(255, 255, 255, .76); font-style: italic; }
.testimonial-card strong { display: block; font-size: 13px; }
.testimonial-card small { color: var(--muted-2); }

.final-cta { overflow: hidden; padding-top: 160px; padding-bottom: 160px; text-align: center; }
.final-cta::before { position: absolute; top: 50%; left: 50%; width: min(900px, 120vw); aspect-ratio: 1.4 / 1; transform: translate(-50%, -50%); background: radial-gradient(ellipse, rgba(183, 203, 22, .16), transparent 62%); filter: blur(50px); content: ""; }
.final-cta .wrap { max-width: 1000px; }
.final-cta h2 { margin-bottom: 0; font-size: clamp(44px, 7vw, 104px); line-height: 1; letter-spacing: -.045em; }
.final-cta p { max-width: 520px; margin: 25px auto 40px; color: var(--muted); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; }

.site-footer { position: relative; padding: 90px 24px 20px; overflow: hidden; border-top: 1px solid var(--line); }
.footer-news { display: flex; max-width: var(--wrap); align-items: center; justify-content: space-between; gap: 30px; margin: 0 auto 80px; padding: 35px 38px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.footer-news h2 { margin-bottom: 5px; font-size: 24px; }
.footer-news p { max-width: 420px; margin-bottom: 0; color: var(--muted); font-size: 13.5px; }
.newsletter-form { width: min(100%, 480px); min-width: 0; flex-shrink: 0; }
.newsletter-form form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 12px; margin: 0; }
/* CF7 wraps the controls in a div and a paragraph; flatten only these wrappers. */
.newsletter-form .newsletter-fields, .newsletter-form .wpcf7-form p { display: contents; }
.newsletter-form .wpcf7-form-control-wrap { min-width: 0; }
.newsletter-form .wpcf7-spinner { display: none; }
.newsletter-form .wpcf7-response-output { grid-column: 1 / -1; width: 100%; margin: 6px 0 0; }
.newsletter-form input[type="email"] { min-width: 0; width: 100%; }
.newsletter-form :is(input[type="email"], input[type="submit"], button[type="submit"]) { height: 48px; }
.footer-grid { display: grid; max-width: var(--wrap); grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin: 0 auto; }
.footer-brand > img { width: auto; height: 42px; }
.footer-brand > p { max-width: 280px; margin: 17px 0 20px; color: var(--muted); font-size: 13.5px; }
.footer-grid h3 { margin-bottom: 20px; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.footer-links, .contact-list { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .contact-list { color: var(--muted); font-size: 13.5px; }
.footer-links a { transition: color .25s, padding-left .25s; }
.footer-links a:hover { padding-left: 5px; color: var(--lime); }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; }
.contact-list .dashicons { width: 14px; height: 14px; margin-top: 5px; color: var(--lime); font-size: 14px; }
.compliance-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.footer-bottom { display: flex; max-width: var(--wrap); align-items: center; justify-content: space-between; gap: 15px; margin: 70px auto 0; padding-top: 23px; color: var(--muted-2); border-top: 1px solid var(--line); font-size: 12px; }
.footer-bottom a:hover { color: var(--lime); }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
  width: 100%;
  padding: 13px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, .05);
  transition: border-color .25s, box-shadow .25s;
}
input:focus, select:focus, textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(183, 203, 22, .12); }
textarea { min-height: 150px; resize: vertical; }
label { color: var(--muted); font-size: 13px; }
.wpcf7 form p { margin-bottom: 15px; }
.wpcf7-not-valid-tip { margin-top: 5px; color: #ff9c9c; font-size: 12px; }
.wpcf7 form .wpcf7-response-output { margin: 18px 0 0; padding: 11px 14px; border-color: var(--lime); border-radius: 12px; }

.inner-hero { position: relative; display: flex; min-height: 72svh; align-items: end; overflow: hidden; padding: 180px 24px 90px; }
.inner-hero .wrap { width: 100%; }
.inner-hero h1 { max-width: 1000px; margin-bottom: 24px; font-size: clamp(52px, 8vw, 116px); line-height: .98; letter-spacing: -.05em; }
.single-post .inner-hero h1 { font-size: clamp(34px, 4.5vw, 64px); }
.inner-hero p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: clamp(16px, 2vw, 20px); }
.single-post .inner-hero p { max-width: 1000px; }
.inner-hero .hero-halo { top: -40%; left: 40%; }

.content-section { padding: 100px 24px 130px; background: var(--white); color: var(--black); }
.content-layout { display: grid; max-width: var(--wrap); grid-template-columns: minmax(0, 1fr) 300px; gap: 90px; margin: 0 auto; }
.entry-content { min-width: 0; }
.entry-content > * { max-width: 780px; }
.entry-content > :is(img, video, iframe, embed, object) { max-width: 100%; }
.entry-content > .alignwide { max-width: var(--wrap); }
.entry-content h2 { margin: 70px 0 22px; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.05; letter-spacing: -.04em; }
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { margin: 38px 0 12px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.025em; }
.entry-content p, .entry-content li { color: rgba(0, 0, 0, .66); }
.entry-content ul, .entry-content ol { padding-left: 24px; }
.entry-content li { margin-bottom: 10px; }
.content-aside { position: sticky; top: 110px; height: max-content; padding: 27px; color: var(--white); border-radius: 22px; background: var(--black); }
.content-aside h2 { margin-bottom: 8px; font-size: 24px; }
.content-aside p { color: var(--muted); font-size: 13.5px; }

.solution-detail-hero { overflow: hidden; padding-top: 160px; padding-bottom: 110px; }
.solution-hero-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px; }
.solution-detail-hero h1 { margin: 0 0 25px; font-size: clamp(54px, 7.2vw, 104px); line-height: .96; letter-spacing: -.05em; }
.solution-detail-hero .lead { max-width: 590px; color: var(--muted); font-size: 17px; }
.solution-detail-hero .solution-visual { min-height: 410px; }
.solution-detail-hero .hero-actions { justify-content: flex-start; }
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mini-stat { padding: 25px 22px; border-right: 1px solid var(--line); }
.mini-stat:last-child { border-right: 0; }
.mini-stat strong { display: block; color: var(--lime); font-family: var(--font-display); font-size: 22px; }
.mini-stat span { color: var(--muted-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.solution-guarantees .mini-stat { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 30px 22px; text-align: center; }
.solution-guarantee-visual { display: flex; width: 176px; max-width: 100%; height: 88px; align-items: center; justify-content: center; overflow: hidden; color: #647000; border-radius: 12px; background: #fff; }
.solution-guarantee-logo { width: 144px; max-width: 100%; height: auto; }
.solution-guarantee-logo-visa { height: 144px; object-fit: contain; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); }
.feature-card .dashicons { width: 28px; height: 28px; color: var(--lime); font-size: 28px; }
.feature-card h3 { margin: 34px 0 9px; font-size: 22px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 13.5px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step-card { position: relative; padding: 31px 27px; color: var(--black); border-radius: 22px; background: var(--white); counter-increment: steps; }
.step-card::before { color: var(--lime-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 700; content: "0" counter(steps); }
.step-card h3 { margin: 45px 0 10px; font-size: 24px; }
.step-card p { margin-bottom: 0; color: rgba(0, 0, 0, .62); font-size: 13.5px; }
.security-strip { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(183, 203, 22, .35); border-radius: 24px; }
.security-item { padding: 29px 22px; border-right: 1px solid rgba(183, 203, 22, .22); text-align: center; }
.security-item:last-child { border-right: 0; }
.security-item .dashicons { display: block; width: 26px; height: 26px; margin: 0 auto 12px; color: var(--lime); font-size: 26px; }
.security-item strong { font-size: 13px; }
.faq-list { max-width: 860px; margin: 0 auto; }
.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; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; font-family: var(--font-display); font-size: 19px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::after { color: var(--lime); font-family: dashicons; font-size: 22px; content: "\f347"; }
.faq-list details[open] summary::after { content: "\f343"; }
.faq-list details p { max-width: 700px; margin: -5px 0 25px; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.content-card { display: flex; min-height: 340px; flex-direction: column; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); transition: transform .35s var(--ease), border-color .3s; }
.content-card:hover { transform: translateY(-6px); border-color: rgba(183, 203, 22, .45); }
.content-card-media { aspect-ratio: 16 / 10; margin: -27px -27px 25px; overflow: hidden; background: var(--panel-2); }
.content-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.content-card:hover .content-card-media img { transform: scale(1.04); }
.content-card .card-label { margin-bottom: 10px; }
.content-card h2, .content-card h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.12; letter-spacing: -.025em; }
.content-card p { margin-bottom: 22px; color: var(--muted); font-size: 13.5px; }
.content-card .solution-more { margin-top: auto; }
.post-meta { margin-bottom: 12px; color: var(--lime); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; }
.pagination { margin-top: 50px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination a, .pagination span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.pagination .current { color: var(--black); border-color: var(--lime); background: var(--lime); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-details { display: grid; gap: 12px; }
.contact-detail { display: flex; align-items: flex-start; gap: 15px; padding: 19px; border: 1px solid rgba(0, 0, 0, .1); border-radius: 18px; }
.contact-detail .dashicons { width: 24px; height: 24px; color: var(--lime-deep); font-size: 24px; }
.contact-detail strong { display: block; font-size: 13px; }
.contact-detail span, .contact-detail a { color: rgba(0, 0, 0, .62); font-size: 13px; }
.contact-form-panel { padding: 35px; color: var(--white); border-radius: 26px; background: var(--black); }
.contact-form-panel h2 { font-size: clamp(32px, 4vw, 48px); }
.contact-form-panel p { color: var(--muted); }

/* Structured custom pages */
.custom-hero { position: relative; display: flex; min-height: 760px; align-items: center; overflow: hidden; padding: 170px 24px 100px; }
.custom-hero-grid { display: grid; width: 100%; grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr); align-items: center; gap: clamp(50px, 7vw, 100px); }
.custom-hero-copy { position: relative; z-index: 2; }
.custom-hero-copy h1 { max-width: 780px; margin-bottom: 28px; font-size: clamp(54px, 5.25vw, 76px); line-height: .98; letter-spacing: -.052em; }
.custom-hero-copy > p { max-width: 620px; color: var(--muted); font-size: 16px; }
.custom-hero-copy .hero-actions { justify-content: flex-start; }
.custom-light { color: var(--black); background: var(--white); }
.custom-light mark { color: var(--lime-deep); }
.custom-light .section-heading > p { color: rgba(0, 0, 0, .62); }
.custom-page .section-heading h2,
.custom-page .section > .wrap > h2,
.custom-page .custom-light h2 { margin-bottom: 20px; font-size: clamp(40px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -.045em; }
.blog-page .content-card h2 { margin-bottom: 12px; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.08; letter-spacing: -.025em; }

.about-hero-media { position: relative; min-height: 430px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 45% 55%, rgba(183, 203, 22, .16), transparent 54%), var(--panel); }
.about-hero .custom-hero-copy h1 { max-width: 556px; font-size: clamp(44px, 5.6vw, 82px); }
.about-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.about-institution { margin: 0 18px; padding: 120px 24px; color: var(--black); border-radius: 30px; background: var(--white); }
.about-institution-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.about-institution h2 { margin-bottom: 24px; font-size: clamp(36px, 4.8vw, 66px); line-height: 1.02; letter-spacing: -.035em; }
.about-institution mark { color: var(--lime-deep); }
.about-institution p { max-width: 690px; margin-bottom: 0; color: rgba(0, 0, 0, .72); font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 29px); font-weight: 600; line-height: 1.45; letter-spacing: -.025em; }
.first-badge { position: relative; display: grid; width: 100%; max-width: 400px; aspect-ratio: 1; place-items: center; align-content: center; justify-self: center; border: 1px solid rgba(129, 144, 0, .42); border-radius: 50%; background: var(--lime); box-shadow: 0 35px 80px rgba(103, 115, 13, .2); text-align: center; }
.first-badge::before, .first-badge::after { position: absolute; inset: 18px; border: 1px solid rgba(0, 0, 0, .18); border-radius: 50%; content: ""; }
.first-badge::after { inset: -18px; border-style: dashed; animation: orbit 18s linear infinite; }
.first-badge strong { font-family: var(--font-display); font-size: clamp(80px, 12vw, 160px); line-height: .8; letter-spacing: -.08em; }
.first-badge sup { font-size: .34em; }
.first-badge span { max-width: 150px; margin-top: 18px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; line-height: 1.5; letter-spacing: 1px; text-transform: uppercase; }
.section.about-brand { overflow: hidden; padding-bottom: 0; }
.about-brand .section-heading { margin-bottom: 0; }
.about-brand .section-heading p { max-width: 620px; margin-right: auto; margin-left: auto; color: var(--muted); }
.product-marquee { margin-top: 70px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.product-marquee-track { display: flex; width: max-content; gap: 12px; animation: marquee 32s linear infinite; }
.product-marquee a { padding: 18px 28px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 35px); font-weight: 700; white-space: nowrap; }
.product-marquee a:nth-child(3n) { color: var(--black); border-color: var(--lime); background: var(--lime); }
.history-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; margin-top: 70px; }
.history-layout > p { max-width: 330px; color: var(--muted); }
.history-timeline { position: relative; padding-left: 42px; border-left: 1px solid rgba(183, 203, 22, .26); }
.history-event { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 0 0 64px; }
.history-event::before { position: absolute; top: 13px; left: -48px; width: 11px; height: 11px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(183, 203, 22, .08); content: ""; }
.history-event > strong { color: rgba(183, 203, 22, .32); font-family: var(--font-display); font-size: 58px; font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.history-event h3 { margin-bottom: 7px; font-size: 22px; }
.history-event p { max-width: 500px; color: var(--muted); font-size: 14px; }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.purpose-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 65px); overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--panel); }
.purpose-card h3 { margin: 0 0 14px; font-size: clamp(38px, 5vw, 65px); line-height: 1; letter-spacing: -.05em; }
.purpose-card p { max-width: 530px; margin-bottom: 0; color: var(--muted); font-size: 16px; }
.purpose-card.is-lime { color: var(--black); border-color: var(--lime); background: var(--lime); }
.purpose-card.is-lime p { color: rgba(0, 0, 0, .62); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 54px; }
.value-card { display: flex; flex-direction: column; justify-content: center; padding: 35px; overflow: hidden; border: 1px solid var(--line); border-radius: 27px; background: var(--panel); }
.value-card h3 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 46px); }
.value-card p { max-width: 530px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.compliance-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: clamp(34px, 5vw, 66px); border: 1px solid rgba(183, 203, 22, .22); border-radius: 26px; background: linear-gradient(120deg, rgba(183, 203, 22, .08), transparent 56%), var(--panel); }
.compliance-card h2 { max-width: 720px; }
.compliance-card p { max-width: 700px; color: var(--muted); }
.about-compliance-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

.hero-stack { display: grid; gap: 14px; }
.hero-stack > div { display: flex; min-height: 110px; align-items: center; gap: 25px; padding: 24px 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .035); backdrop-filter: blur(12px); }
.hero-stack span { color: var(--lime); font-family: var(--font-mono); font-size: 11px; }
.hero-stack strong { font-family: var(--font-display); font-size: 31px; }
.hero-stack > div:nth-child(2) { color: var(--black); border-color: var(--lime); background: var(--lime); transform: translateX(-28px); }
.hero-stack > div:nth-child(2) span { color: rgba(0, 0, 0, .58); }
.ecosystem-cards { display: flex; min-height: 410px; gap: 14px; }
.ecosystem-card { display: flex; flex: 1; flex-direction: column; padding: 34px; border-radius: 25px; background: #ededE8; transition: flex .5s var(--ease); }
.ecosystem-card:hover { flex: 1.45; }
.ecosystem-card > span { color: var(--lime-deep); font-family: var(--font-mono); font-size: 11px; }
.ecosystem-card h3 { margin: auto 0 12px; font-size: clamp(32px, 3.5vw, 50px); }
.ecosystem-card p { margin-bottom: 0; color: rgba(0, 0, 0, .64); font-size: 14px; }
.ecosystem-card.is-dark { color: var(--white); background: var(--black); }
.ecosystem-card.is-dark p { color: var(--muted); }
.ecosystem-card.is-dark > span { color: var(--lime); }
.pole-group { margin-top: 74px; }
.pole-group > h3 { display: inline-flex; margin-bottom: 24px; padding: 8px 14px; color: var(--black); border-radius: 999px; background: var(--lime); font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.pole-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.pole-grid .feature-card { min-height: 260px; }
.pole-grid .feature-card h4 { margin: 48px 0 12px; font-size: 23px; line-height: 1.2; }
.digital-method, .api-benefits { background: var(--black-soft); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card { min-height: 300px; padding: 32px; color: var(--black); border-radius: 23px; background: var(--white); }
.process-card > span { color: var(--lime-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 700; }
.process-card h3 { margin: 90px 0 12px; font-size: 26px; }
.process-card p { margin-bottom: 0; color: rgba(0, 0, 0, .62); font-size: 14px; }
.process-card:nth-child(2) { background: var(--lime); }
.project-promo { display: grid; min-height: 470px; align-items: center; padding: clamp(35px, 6vw, 75px); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(100deg, var(--panel) 0 58%, rgba(183, 203, 22, .14)); }
.project-promo > div { max-width: 780px; }
.project-promo h2 { font-size: clamp(42px, 5.2vw, 70px); line-height: 1.02; }
.project-promo p { max-width: 600px; color: var(--muted); }

.code-window { overflow: hidden; border: 1px solid rgba(183, 203, 22, .28); border-radius: 22px; background: #0d0f0b; box-shadow: 0 30px 80px rgba(0, 0, 0, .46); font-family: var(--font-mono); }
.code-window > div { display: flex; align-items: center; gap: 8px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.code-window > div span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.code-window > div b { margin-left: auto; color: var(--muted-2); font-size: 9px; letter-spacing: 1px; }
.code-window pre { min-height: 330px; margin: 0; padding: 30px; overflow: auto; color: rgba(250, 250, 248, .72); font-size: clamp(11px, 1.2vw, 14px); line-height: 1.9; white-space: pre-wrap; }
.code-window em { color: var(--lime); font-style: normal; }
.code-window q { color: #b7d9ff; }
.code-window footer { padding: 13px 20px; color: var(--muted-2); border-top: 1px solid var(--line); font-size: 10px; }
.code-window footer i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--lime); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.capability-card { min-height: 250px; padding: 28px; border: 1px solid rgba(0, 0, 0, .08); border-radius: 21px; background: #efefeb; }
.capability-card > span { color: var(--lime-deep); font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.capability-card h3 { margin: 70px 0 10px; font-size: 25px; }
.capability-card p { margin-bottom: 0; color: rgba(0, 0, 0, .62); font-size: 13px; }
.benefit-grid, .security-grid, .docs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card, .security-card { min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: var(--panel); }
.benefit-card .dashicons, .security-card .dashicons { width: 28px; height: 28px; color: var(--lime); font-size: 28px; }
.benefit-card h3, .security-card h3 { margin: 62px 0 10px; font-size: 21px; }
.benefit-card p, .security-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.docs-grid .doc-card { display: flex; min-height: 290px; flex-direction: column; padding: 27px; color: var(--black); border: 1px solid rgba(0, 0, 0, .09); border-radius: 21px; background: #efefeb; }
.docs-grid .doc-card > span { color: var(--lime-deep); font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; }
.docs-grid .doc-card h3 { margin: 60px 0 10px; font-size: 25px; }
.docs-grid .doc-card p { color: rgba(0, 0, 0, .62); font-size: 13px; }
.docs-grid .doc-card b { display: flex; align-items: center; gap: 5px; margin-top: auto; font-size: 13px; }

.contact-orbit { display: grid; width: min(390px, 100%); aspect-ratio: 1; place-items: center; align-content: center; justify-self: center; border: 1px solid rgba(183, 203, 22, .35); border-radius: 50%; background: radial-gradient(circle, rgba(183, 203, 22, .13), transparent 65%); text-align: center; }
.regulation-logo-bceao { width: min(328px, 100%); padding: 24px; justify-self: center; border-radius: 20px; }
.regulation-logo-bceao img { display: block; width: 100%; height: auto; }
html:not([data-theme="light"]) .regulation-logo-bceao { background: #fff; }
.approval-layout > div:last-child > p { max-width: 700px; color: rgba(0, 0, 0, .64); }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; }
.fact-grid > div { padding: 17px; border: 1px solid rgba(0, 0, 0, .09); border-radius: 14px; }
.fact-grid span { display: block; margin-bottom: 5px; color: rgba(0, 0, 0, .48); font-family: var(--font-mono); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; }
.fact-grid strong { font-size: 13px; }
.license-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.license-card { min-height: 250px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.license-card .dashicons { width: 25px; height: 25px; color: var(--lime); font-size: 25px; }
.license-card h3 { margin: 60px 0 9px; font-size: 20px; line-height: 1.25; }
.license-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.regulation-pci { color: var(--black); background: var(--lime); }
.regulation-pci mark { color: var(--black); text-decoration: underline; text-decoration-thickness: 5px; text-underline-offset: 8px; }
.pci-layout { display: grid; grid-template-columns: 1fr 360px; align-items: center; gap: 80px; }
.pci-layout p { max-width: 690px; color: rgba(0, 0, 0, .66); }
.pci-layout ul { padding-left: 20px; }
.pci-layout li { margin-bottom: 9px; }
.regulation-logo-pci { width: min(320px, 100%); height: auto; aspect-ratio: 32 / 13; justify-self: center; }
.regulation-logo-pci .hero-proof-logo { width: 106.25%; height: auto; transform: translate(-2.941176%, -11.764706%); }
.kyc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kyc-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.kyc-card > span { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(183, 203, 22, .1); }
.kyc-card h3 { margin: 70px 0 9px; font-size: 21px; }
.kyc-card p { margin: 0; color: var(--muted); font-size: 13px; }
.data-protection { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(35px, 5vw, 62px); border: 1px solid rgba(183, 203, 22, .25); border-radius: 25px; background: var(--panel); }
.data-protection p { max-width: 720px; margin: 0; color: var(--muted); }
.data-protection > .dashicons { width: 90px; height: 90px; color: var(--lime); font-size: 90px; }

.contact-orbit .dashicons { width: 52px; height: 52px; color: var(--lime); font-size: 52px; }
.contact-orbit strong { margin-top: 14px; font-family: var(--font-display); font-size: 55px; }
.contact-orbit small { color: var(--muted); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.custom-hero.contact-custom-hero, .custom-hero.about-split-hero, .custom-hero.blog-split-hero, .custom-hero.realisation-split-hero { display: grid; min-height: 760px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; padding: 80px 0 0; }
/* Align the copy with .wrap while the photo fills the entire right half. */
.contact-hero-copy, .about-hero-copy, .blog-hero-copy, .blog-single-hero-copy, .realisation-split-hero .realisation-hero-copy { align-self: center; padding: 90px clamp(32px, 4vw, 72px) 90px max(24px, calc(100% - var(--wrap) / 2)); }
.contact-hero-media, .about-building-media, .blog-hero-media, .blog-single-hero-media, .realisation-hero-media { position: relative; z-index: 1; min-width: 0; margin: 0; overflow: hidden; }
.contact-hero-image, .about-building-image, .blog-hero-image, .blog-single-hero-image, .realisation-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.blog-hero-image { object-position: 65% center; }
.blog-single-hero .custom-hero-copy h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(42px, 4.6vw, 68px); line-height: .98; letter-spacing: -.025em; }
.blog-single-hero-copy > p { max-width: 680px; }
.realisation-hero-media.is-illustration { background: var(--surface-inset); }
.realisation-hero-media.is-illustration .realisation-hero-image { padding: clamp(24px, 4vw, 64px); object-fit: contain; }
.blog-hero-copy > p, .realisation-hero-copy > p { margin-bottom: 0; }
.custom-hero.realisation-text-hero { min-height: 56svh; align-items: end; padding: 150px 24px 80px; }
.realisation-text-hero .realisation-hero-copy { width: 100%; }
.realisation-text-hero h1 { max-width: 680px; font-size: clamp(52px, 7vw, 96px); }
.realisation-text-hero p { max-width: 650px; font-size: clamp(16px, 2vw, 20px); }
/* Give the architectural photo enough height to retain the roof and entrances. */
.about-building-media { width: 100%; aspect-ratio: 1; }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.channel-card { display: flex; flex-direction: column; justify-content: center; padding: 28px; border: 1px solid rgba(0, 0, 0, .09); border-radius: 20px; background: #efefeb; }
.channel-card h3 { margin: 0 0 9px; font-size: 22px; }
.channel-card p { color: rgba(0, 0, 0, .58); font-size: 13px; }
.channel-card a, .channel-card strong { color: var(--lime-deep); font-weight: 700; }
.contact-form-section { background: var(--black-soft); }
.contact-custom-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; }
.contact-custom-grid > div:first-child h2 { font-size: clamp(42px, 5vw, 66px); line-height: 1.04; }
.contact-address { display: grid; gap: 14px; margin-top: 45px; }
.contact-address > div { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-address span { display: block; margin-bottom: 5px; color: var(--lime); font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; }
.contact-address p { max-width: 470px; margin: 0; color: var(--muted); }

.impact-board { padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.impact-board > span { color: var(--lime); font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.impact-board > strong { display: block; margin: 45px 0 0; font-family: var(--font-display); font-size: 130px; line-height: .9; letter-spacing: -.08em; }
.impact-board > small { color: var(--muted); }
.impact-board > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 45px; }
.impact-board b { padding: 7px 10px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.project-sector:nth-child(even) { background: var(--black-soft); }
.case-list { display: grid; gap: 22px; }
.case-card { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--panel); }
.case-card:has(.case-media) { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); }
.case-media { min-height: 430px; overflow: hidden; background: var(--panel-2); }
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-copy { display: flex; min-height: 430px; flex-direction: column; padding: clamp(30px, 5vw, 60px); }
.case-copy h3 { margin-bottom: 12px; font-size: clamp(38px, 4.6vw, 64px); letter-spacing: -.04em; }
.case-summary { max-width: 650px; color: var(--white); font-size: 18px; }
.case-body { max-width: 680px; color: var(--muted); font-size: 14px; }
.case-body p { margin-bottom: 12px; }
.case-copy small { margin-top: 20px; color: var(--muted-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.case-copy .solution-more { margin-top: auto; padding-top: 25px; }

/* Shared FinTech / EdTech / GovTech landing-page model. */
.pillar-hero-art { position: relative; z-index: 1; width: 100%; max-width: 560px; margin: 0; justify-self: center; }
.pillar-hero-illustration { display: block; width: 100%; height: auto; }
.pillar-hero { min-height: 820px; }
.pillar-hero-board { position: relative; padding: clamp(30px, 4vw, 54px); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: 0 32px 90px rgba(0, 0, 0, .22); }
.pillar-hero-board::after { position: absolute; right: -90px; bottom: -120px; width: 310px; height: 310px; border: 1px solid rgba(183, 203, 22, .2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(183, 203, 22, .035), 0 0 0 90px rgba(183, 203, 22, .025); content: ''; pointer-events: none; }
.pillar-hero-board > span { color: var(--lime); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.pillar-hero-board > strong { position: relative; z-index: 1; display: block; margin: clamp(55px, 8vw, 95px) 0 18px; font-family: var(--font-display); font-size: clamp(66px, 8vw, 118px); line-height: .88; letter-spacing: -.075em; }
.pillar-hero-board > p { position: relative; z-index: 1; max-width: 440px; color: var(--muted); }
.pillar-hero-board > div { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.pillar-hero-board b { padding: 8px 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-mono); font-size: 8px; letter-spacing: .7px; text-transform: uppercase; }
.pillar-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pillar-service-card { position: relative; display: flex; min-height: 0; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 48px); overflow: hidden; border: 1px solid rgba(0, 0, 0, .1); border-radius: 24px; background: #f3f4ed; }
.pillar-service-card:nth-child(2n) { background: var(--lime); }
.pillar-service-card h3 { max-width: 520px; margin: 0 0 14px; font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -.04em; }
.pillar-service-card p { max-width: 560px; margin: 0; color: rgba(8, 8, 8, .64); }
.pillar-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pillar-product-card { display: flex; min-height: 510px; flex-direction: column; padding: 18px; overflow: hidden; color: var(--white); border: 1px solid var(--line); border-radius: 24px; background: var(--panel); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.pillar-product-card:hover, .pillar-product-card:focus-visible { transform: translateY(-6px); border-color: rgba(183, 203, 22, .45); box-shadow: 0 28px 70px rgba(0, 0, 0, .22); }
.pillar-product-media { display: block; height: 230px; margin-bottom: 28px; overflow: hidden; border-radius: 16px; background: var(--panel-2); }
.pillar-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.pillar-product-card:hover .pillar-product-media img { transform: scale(1.035); }
.pillar-product-card h3 { margin: 12px 0 10px; font-size: clamp(27px, 2.4vw, 38px); line-height: 1; letter-spacing: -.04em; }
.pillar-product-card > p { color: var(--muted); font-size: 14px; }
.pillar-product-card > .solution-more { margin-top: auto; padding-top: 25px; }
.pillar-api-section { padding-top: 0; }
.pillar-api-card { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: clamp(40px, 7vw, 95px); padding: clamp(38px, 6vw, 78px); color: var(--white); border: 1px solid rgba(183, 203, 22, .25); border-radius: 30px; background: radial-gradient(circle at 85% 15%, rgba(183, 203, 22, .14), transparent 34%), #10110e; box-shadow: 0 35px 95px rgba(0, 0, 0, .28); }
.pillar-api-card h2 { max-width: 720px; margin: 20px 0; font-size: clamp(36px, 4vw, 58px); line-height: 1; letter-spacing: -.04em; }
.pillar-api-card p { max-width: 680px; color: rgba(250, 250, 248, .62); }
.pillar-api-card .btn { margin-top: 28px; }
.pillar-api-code { display: flex; min-height: 330px; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(183, 203, 22, .22); border-radius: 20px; background: rgba(0, 0, 0, .38); box-shadow: inset 0 0 55px rgba(183, 203, 22, .035); }
.pillar-api-code span { margin-bottom: 26px; color: var(--lime); font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; }
.pillar-api-code code { color: rgba(250, 250, 248, .72); font-family: var(--font-mono); font-size: clamp(12px, 1.4vw, 16px); line-height: 1.85; }
.pillar-projects { background: var(--page); }
.project-solution-card:not(.theme-lime) .solution-index { color: var(--accent-text); }
.project-solution-card .solution-audience { opacity: 1; }
.project-client { display: block; margin-top: 18px; opacity: .65; font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.project-solution-visual.is-illustration img { padding: clamp(16px, 2vw, 28px); object-fit: contain; }
.pillar-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.pillar-project-card { --pillar-card-pad: clamp(28px, 4vw, 48px); display: flex; min-height: 440px; flex-direction: column; padding: var(--pillar-card-pad); overflow: hidden; color: var(--white); border: 1px solid var(--line); border-radius: 25px; background: var(--panel); transition: transform .3s var(--ease), border-color .3s; }
.pillar-project-card:hover, .pillar-project-card:focus-visible { transform: translateY(-5px); border-color: rgba(183, 203, 22, .4); }
.pillar-project-card:only-child { grid-column: 1 / -1; }
.pillar-project-media { height: 220px; margin: calc(0px - var(--pillar-card-pad)) calc(0px - var(--pillar-card-pad)) 32px; overflow: hidden; }
.pillar-project-media img { width: 100%; height: 100%; object-fit: cover; }
.pillar-project-card h3 { margin: 14px 0 12px; font-size: clamp(36px, 4vw, 58px); line-height: .98; letter-spacing: -.045em; }
.pillar-project-card > p { max-width: 620px; color: var(--muted); }
.pillar-project-card small { margin-top: 18px; color: var(--muted-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.pillar-project-card > .solution-more { margin-top: auto; padding-top: 35px; }

/* Shared semantic surfaces: keep custom templates in sync with the two palettes.
   Fixed dark panels and lime panels intentionally keep their own foregrounds. */
html { scrollbar-color: var(--muted-2) var(--page); }
html::-webkit-scrollbar-track { background: var(--page); }
html .desktop-menu a { color: var(--muted-2); }
html .desktop-menu a:hover,
html .desktop-menu .current-menu-item > a { color: var(--text); background: transparent; }
html .theme-toggle { color: var(--text); border-color: var(--line); background: var(--panel-2); }
html .theme-toggle .dashicons { color: var(--accent-text); }
html .mobile-menu { color: var(--text); background: var(--overlay-bg); }
html .btn-ghost, html .btn-outline { color: var(--text); border-color: var(--line); background: transparent; }
html :is(mark, .eyebrow, .card-label, .post-meta, .solution-index,
  .stat-value .plus, .mini-stat strong,
  .contact-address span, .impact-board > span,
  .pillar-hero-board > span, .hero-stack span) { color: var(--accent-text); }
html .footer-links a:hover, html .footer-bottom a:hover { color: var(--accent-text); }
html .testimonial-card blockquote { color: var(--text); }
html .hero-stack > div { background: var(--panel); }
html .hero-stack > div:nth-child(2) { background: var(--lime); color: var(--black); }
html .hero-stack > div:nth-child(2) span { color: var(--on-lime-muted); }
html:not([data-theme="light"]) .hero-proof > span,
html:not([data-theme="light"]) .hero-proof-copy small { color: #fff; font-weight: 700; }

/* Cal Sans has one intentionally expressive weight; do not synthesize bold.
   Less negative tracking lets its rounded shapes breathe at the existing scale. */
html :is(h1, h2, h3, h4, h5, h6, .mobile-menu .menu a, .card-metric,
  .stat-value, .mini-stat strong, .faq-list summary, .product-marquee a,
  .history-event > strong, .hero-stack strong,
  .first-badge strong,
  .contact-orbit strong, .impact-board > strong,
  .pillar-hero-board > strong) { font-weight: 400; font-synthesis: none; letter-spacing: -.01em; }
html :is(.home-hero h1, .inner-hero h1, .custom-hero-copy h1,
  .solution-detail-hero h1, .section-title, .custom-page .section-heading h2,
  .custom-page .section > .wrap > h2, .custom-page .custom-light h2,
  .solution-card h3, .purpose-card h3, .pillar-service-card h3,
  .pillar-product-card h3, .pillar-project-card h3, .case-copy h3,
  .pillar-api-card h2, .pillar-hero-board > strong) { letter-spacing: -.01em; line-height: 1.06; }
html .about-institution p { font-family: var(--font-body); font-weight: 500; letter-spacing: -.015em; }

html :is(.custom-light, .content-section, .ecosystem-section, .about-institution) {
  color: var(--text);
  background: var(--surface-section);
}
html :is(.custom-light .section-heading > p, .ecosystem-section .section-copy,
  .about-institution p, .entry-content p, .entry-content li,
  .approval-layout > div:last-child > p, .contact-detail span, .contact-detail a) { color: var(--muted); }
html .entry-content a:not(.btn) { text-decoration: underline; text-underline-offset: .18em; }
html :is(.eco-card, .ecosystem-card, .step-card, .process-card,
  .capability-card, .docs-grid .doc-card, .channel-card, .pillar-service-card) {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface-inset);
}
html :is(.eco-card p, .ecosystem-card p, .step-card p, .process-card p,
  .capability-card p, .docs-grid .doc-card p, .channel-card p,
  .pillar-service-card p, .fact-grid span) { color: var(--muted); }
html :is(.eco-number, .ecosystem-card > span, .step-card::before,
  .process-card > span, .capability-card > span, .docs-grid .doc-card > span,
  .channel-card a, .channel-card strong) { color: var(--accent-text); }
html :is(.contact-detail, .fact-grid > div) { border-color: var(--line); }
html :is(.pillar-product-card, .pillar-project-card, .pillar-hero-board,
  .case-summary) { color: var(--text); }
html :is(.pillar-product-card, .pillar-project-card, .pillar-hero-board,
  .solution-visual, .purpose-card, .value-card,
  .benefit-card, .security-card, .license-card, .kyc-card, .data-protection,
  .impact-board, .case-card, .content-card, .feature-card, .why-card,
  .testimonial-card, .footer-news) { box-shadow: var(--shadow); }
html .solution-card { color: var(--text); background: var(--panel); box-shadow: var(--shadow); }
html .solution-card.theme-white, html .why-card.light {
  color: var(--text); border-color: var(--line); background: var(--panel-2);
}
html .why-card.light p { color: var(--muted); }
html .why-card.light .card-metric { color: var(--accent-text); }

/* Lime remains iFutur's brand color, with legible ink in either mode. */
html :is(.solution-card.theme-lime, .why-card.lime, .purpose-card.is-lime,
  .process-card:nth-child(2), .pillar-service-card:nth-child(2n),
  .first-badge, .regulation-pci) { color: var(--black); background: var(--lime); }
html :is(.theme-lime .solution-index, .lime .card-label,
  .why-card.lime p, .purpose-card.is-lime p,
  .process-card:nth-child(2) > span, .process-card:nth-child(2) p,
  .pillar-service-card:nth-child(2n) p,
  .pci-layout p) { color: var(--on-lime-muted); }
html .regulation-pci { --accent-text: var(--black); }

/* These dark surfaces are intentional, including when the page is light. */
html :is(.eco-card.accent, .ecosystem-card.is-dark, .content-aside,
  .contact-form-panel, .pillar-api-card, .code-window, .solution-card.theme-glow) {
  --muted: var(--on-dark-muted);
  --muted-2: #a3a3a3;
  --text: var(--white);
  --accent-text: var(--lime);
  --line: #454545;
  color: var(--white);
  background: var(--dark-surface);
}
html :is(.eco-card.accent p, .ecosystem-card.is-dark p, .content-aside p,
  .contact-form-panel p, .contact-form-panel label, .pillar-api-card p,
  .code-window pre) { color: var(--on-dark-muted); }
html .pillar-api-card h2 { color: var(--white); }
html .eco-card.accent .eco-number, html .ecosystem-card.is-dark > span { color: var(--lime); }
html .pillar-api-code { background: #1a1a1a; box-shadow: none; }
html .pillar-api-code code { color: #b5b5b5; }
html .code-window { box-shadow: var(--shadow); }
html .about-hero-media { background: var(--dark-surface); border-color: var(--line); }
html .project-promo { background: var(--panel); }
html .history-event > strong { color: var(--accent-text); }

html :is(input[type="text"], input[type="email"], input[type="tel"],
  input[type="url"], select, textarea) {
  color: var(--text); border-color: var(--line); background: var(--surface-inset);
}
html .contact-form-panel :is(input[type="text"], input[type="email"],
  input[type="tel"], input[type="url"], select, textarea) {
  color: var(--white); border-color: #555; background: #343434; color-scheme: dark;
}
html input::placeholder, html textarea::placeholder { color: var(--muted); opacity: 1; }
html :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent-text); outline-offset: 4px;
}
html .hero-halo { opacity: .45; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.not-found { display: grid; min-height: 80svh; place-items: center; padding: 150px 24px 80px; text-align: center; }
.not-found h1 { margin-bottom: 10px; color: var(--lime); font-size: clamp(80px, 15vw, 190px); line-height: 1; }

@media (max-width: 1020px) {
  .desktop-menu { display: none; }
  .site-nav-inner { display: flex; justify-content: space-between; }
  .site-logo { flex: 1 1 auto; }
  .language-switcher { order: 1; }
  .theme-toggle { order: 2; }
  .menu-toggle { order: 3; }
  .menu-toggle { display: grid; place-items: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card.tall { grid-row: auto; }
  .why-card.wide { grid-column: 1 / -1; }
  .payment-provider-logos { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .content-layout { grid-template-columns: 1fr; gap: 50px; }
  .content-aside { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-hero-grid { grid-template-columns: 1fr; }
  .custom-hero { min-height: 0; }
  .custom-hero.about-split-hero, .custom-hero.blog-split-hero, .custom-hero.realisation-split-hero { min-height: 0; grid-template-columns: 1fr; }
  .about-hero-copy, .blog-hero-copy, .blog-single-hero-copy, .realisation-split-hero .realisation-hero-copy { padding: 64px 20px 56px; }
  .blog-hero-media, .blog-single-hero-media { aspect-ratio: 2400 / 1101; }
  .realisation-hero-media { aspect-ratio: 4 / 3; }
  .about-hero-media { min-height: 390px; }
  .about-institution-grid { grid-template-columns: 270px 1fr; gap: 45px; }
  .first-badge { width: 230px; }
  .pole-grid, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .security-grid, .docs-grid, .license-grid, .kyc-grid, .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .pci-layout { grid-template-columns: 1fr 290px; gap: 45px; }
  .contact-custom-grid { gap: 40px; }
  .pillar-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar-api-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .custom-hero.contact-custom-hero, .custom-hero.about-split-hero { min-height: 0; grid-template-columns: 1fr; }
  .contact-hero-copy, .about-hero-copy { padding: 64px 20px 56px; }
  .contact-hero-media { aspect-ratio: 2000 / 1386; }
  .partners-section { padding-right: 20px; padding-left: 20px; }
  .partners-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .partners-heading p { max-width: 520px; }
  .section { padding: 95px 20px; }
  .solution-card { min-height: 0; grid-template-columns: 1fr; padding: 30px 24px; }
  .solution-card .solution-visual { order: -1; }
  .eco-grid { min-height: 0; flex-direction: column; }
  .eco-card { min-height: 210px; }
  .eco-icon { width: 72px; height: 72px; margin: 20px 0 0; }
  .eco-card p { opacity: 1; transform: none; }
  .eco-card h3 { margin-top: 28px; }
  .footer-news { align-items: stretch; flex-direction: column; }
  .newsletter-form { width: 100%; }
  .solution-hero-grid { grid-template-columns: 1fr; }
  .solution-detail-hero .solution-visual { min-height: 0; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .security-strip { grid-template-columns: repeat(2, 1fr); }
  .security-item:nth-child(2) { border-right: 0; }
  .security-item:nth-child(n + 3) { border-top: 1px solid rgba(183, 203, 22, .22); }
  .mini-stats { grid-template-columns: repeat(2, 1fr); }
  .mini-stat:nth-child(2) { border-right: 0; }
  .mini-stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; }
  .custom-hero { padding-top: 150px; }
  .about-institution-grid, .history-layout, .pci-layout, .contact-custom-grid { grid-template-columns: 1fr; }
  .first-badge { justify-self: start; }
  .history-layout { gap: 42px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .ecosystem-cards { min-height: 0; flex-direction: column; }
  .ecosystem-card { min-height: 280px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 240px; }
  .process-card h3 { margin-top: 60px; }
  .compliance-card { grid-template-columns: 1fr; }
  .case-card:has(.case-media) { grid-template-columns: 1fr; }
  .case-media { min-height: 320px; }
  .pillar-hero { min-height: 0; }
  .pillar-service-grid, .pillar-project-grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
  body.admin-bar .mobile-menu { padding-top: 151px; }
  body.admin-bar #wpadminbar { position: fixed; }
}

@media (max-width: 600px) {
  .site-nav-inner { padding: 0 16px; }
  .site-logo-image { height: 25px; }
  .menu-toggle { width: 40px; height: 40px; color: var(--white); background: transparent; }
  .language-switcher { padding: 2px; }
  .language-switcher-link { min-width: 27px; height: 26px; padding: 0 6px; font-size: 10px; }
  .theme-toggle { width: 40px; height: 40px; justify-content: center; padding: 0; }
  .home-hero { padding-top: 150px; padding-bottom: 0; }
  .hero-content { transform: translateY(7px); }
  .home-hero h1 { font-size: clamp(52px, 9.4vw, 136px); }
  .hero-proof { gap: 13px; }
  .hero-proof > span { width: 100%; justify-content: center; }
  .why-grid, .stats-grid, .testimonial-grid, .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .why-card.wide, .footer-brand { grid-column: auto; }
  .payment-provider-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .partners-section { padding-top: 50px; padding-bottom: 70px; }
  .partners-panel { padding: 36px 0; border-radius: 24px; }
  .partners-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; padding: 0 28px; }
  .partners-heading p { font-size: 16px; }
  .partner-logo { width: 190px; height: 174px; padding: 24px; }
  .partner-logo img { height: 104px; }
  .stat-card { padding: 31px 8px 12px; border-top: 1px solid var(--line); border-right: 0; }
  .stat-card:first-child { border-top: 0; }
  .footer-news { padding: 27px 22px; }
  .newsletter-form form { grid-template-columns: minmax(0, 1fr); }
  .newsletter-form input[type="email"], .newsletter-form input[type="submit"], .newsletter-form button[type="submit"] { width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .inner-hero { min-height: 65svh; padding-bottom: 65px; }
  .inner-hero h1 { font-size: clamp(48px, 14vw, 76px); }
  .custom-hero.realisation-text-hero { min-height: 52svh; padding: 130px 20px 60px; }
  .mini-stats, .security-strip { grid-template-columns: 1fr; }
  .mini-stat, .security-item { border-top: 1px solid var(--line); border-right: 0; }
  .mini-stat:first-child, .security-item:first-child { border-top: 0; }
  .contact-form-panel { padding: 26px 20px; }
  .pillar-product-grid { grid-template-columns: 1fr; }
  .pillar-product-card { min-height: 480px; }
  .pillar-api-card { padding: 30px 22px; }
  .pillar-api-code { min-height: 280px; padding: 24px 18px; }
  .pillar-project-card { min-height: 390px; }
  .custom-hero { padding: 140px 20px 80px; }
  .custom-hero-copy h1 { font-size: clamp(46px, 13vw, 72px); }
  .custom-hero-grid { gap: 45px; }
  .about-hero-media { min-height: 280px; }
  .about-institution { margin: 0 8px; padding: 55px 20px; }
  .about-institution h2 { font-size: 40px; }
  .first-badge { width: 210px; }
  .first-badge strong { font-size: 70px; }
  .values-grid, .pole-grid, .capability-grid, .benefit-grid, .security-grid, .docs-grid, .license-grid, .kyc-grid, .channel-grid, .fact-grid { grid-template-columns: 1fr; }
  .history-timeline { padding-left: 30px; }
  .history-event { grid-template-columns: 1fr; gap: 12px; }
  .history-event::before { left: -36px; }
  .history-event > strong { font-size: 45px; }
  .purpose-card { padding: 28px; }
  .compliance-card { padding: 28px 22px; }
  .hero-stack > div:nth-child(2) { transform: none; }
  .code-window pre { min-height: 270px; padding: 22px 16px; }
  .contact-orbit { width: 280px; justify-self: start; }
  .data-protection { grid-template-columns: 1fr; }
  .data-protection > .dashicons { width: 60px; height: 60px; font-size: 60px; }
  .impact-board > strong { font-size: 95px; }
  .case-copy { min-height: 380px; padding: 28px 22px; }
}

@media (max-width: 600px), (hover: none) {
  .partner-track { animation-duration: 34s; }
}

@media (max-width: 600px) {
  .partner-logo { width: calc((100vw - 88px) / 4); height: 130px; padding: 10px; }
  .partner-logo img { height: 80px; }
}

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