/* =========================================================
   BEYOND — site-wide styles (composes on top of tokens.css)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--byd-ink);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

::selection { background: var(--byd-cyan); color: #fff; }

/* ============= LAYOUT PRIMITIVES ============= */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) { .container { padding: 0 24px; } }

.section {
  padding: 120px 0;
  position: relative;
}
.section--tight { padding: 72px 0; }
.section--xl { padding: 160px 0; }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section--xl { padding: 96px 0; }
}

/* ============= THE SLASH — proprietary motif ============= */

.slash-bar {
  display: block;
  width: 56px;
  height: 6px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
}
.slash-bar--lg { width: 96px; height: 8px; }
.slash-bar--sm { width: 28px; height: 3px; }

.slash-divider {
  width: 64px;
  height: 6px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  margin: 0 0 24px;
  border: 0;
  display: block;
}

/* ============= TYPOGRAPHY UTILITIES ============= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--byd-cyan);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px; height: 3px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
}
.eyebrow--light { color: rgba(255,255,255,0.92); }

.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--byd-navy);
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: var(--byd-navy);
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--byd-navy);
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--byd-navy);
  margin: 0;
}
.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.lede--light { color: rgba(255,255,255,0.78); }

.editorial {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--byd-navy);
  text-wrap: balance;
}

.label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============= BUTTON ============= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .18s var(--ease-out);
  white-space: nowrap;
}
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform .22s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--byd-navy);
  color: #fff;
  padding-right: 40px;
}
.btn--primary::after {
  content: "";
  position: absolute;
  right: -2px; top: 0; bottom: 0;
  width: 22px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  transform-origin: top right;
  transition: width .22s var(--ease-out), background .18s var(--ease-out);
}
.btn--primary:hover { background: var(--byd-navy-soft); }
.btn--primary:hover::after { width: 32px; background: var(--byd-cyan-bright); }
.btn--primary:active { transform: scale(0.98); }

.btn--accent {
  background: var(--byd-cyan);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,160,223,0.22);
}
.btn--accent:hover { background: var(--byd-cyan-bright); box-shadow: 0 16px 38px rgba(0,160,223,0.32); }
.btn--accent:active { transform: scale(0.98); background: var(--byd-cyan-deep); }

.btn--ghost {
  background: transparent;
  color: var(--byd-navy);
  border: 1px solid var(--byd-navy-300);
}
.btn--ghost:hover { border-color: var(--byd-cyan); color: var(--byd-cyan-deep); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
}
.btn--ghost-light:hover { border-color: var(--byd-cyan); color: var(--byd-cyan); }

.btn--link {
  background: transparent;
  color: var(--byd-cyan-deep);
  padding: 6px 0;
  border-radius: 0;
  font-weight: 600;
}
.btn--link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor;
  transition: right .28s var(--ease-out);
}
.btn--link:hover::after { right: 0; }

/* ============= NAV ============= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: background .28s var(--ease-out), backdrop-filter .28s var(--ease-out), border-color .28s var(--ease-out), padding .28s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-1);
  padding: 12px 48px;
}
.nav--dark { /* used when over light page content */
  background: rgba(255,255,255,0.0);
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  transition: color .14s var(--ease-out);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  transition: right .24s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--byd-cyan-deep); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--byd-navy-200);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
}
.nav--over-dark .lang-switch { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 8px 12px;
  color: inherit;
  font: inherit;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all .14s var(--ease-out);
}
.lang-switch button.is-active {
  background: var(--byd-navy);
  color: #fff;
}
.nav--over-dark .lang-switch button { color: rgba(255,255,255,0.7); }
.nav--over-dark .lang-switch button.is-active { background: var(--byd-cyan); color: #fff; }

/* ============= REVEAL ANIMATIONS ============= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--right { transform: translateX(-28px); }
.reveal--right.is-visible { transform: translateX(0); }
.reveal--scale { transform: scale(0.96); }
.reveal--scale.is-visible { transform: scale(1); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal[data-delay="6"] { transition-delay: 480ms; }

/* Word-by-word reveal for hero */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.word-reveal.is-visible > span { transform: translateY(0); }

/* Slash sweep — for buttons / page transitions */
@keyframes slash-sweep {
  0%   { transform: skewX(-12deg) translateX(-120%); }
  100% { transform: skewX(-12deg) translateX(120%); }
}

/* ============= CARD ============= */

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,27,53,0.10);
  border-color: var(--byd-navy-200);
}
.card__slash {
  position: absolute;
  top: -3px; left: -10px;
  width: 64px; height: 14px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  transform-origin: top left;
  transition: width .28s var(--ease-out);
}
.card:hover .card__slash { width: 96px; }

/* ============= LINKEDIN BADGE ============= */
.li-badge:hover {
  background: var(--byd-cyan);
  border-color: var(--byd-cyan) !important;
  color: #fff !important;
}

/* ============= FOOTER ============= */

.footer {
  position: relative;
  background: var(--byd-navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 96px 0 32px;
  overflow: hidden;
}
.footer__slash {
  position: absolute;
  top: 0; left: 48px;
  width: 96px; height: 8px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  transform-origin: top left;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__col-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--byd-cyan);
  margin: 0 0 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color .14s var(--ease-out);
}
.footer ul a:hover { color: var(--byd-cyan); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal {
  color: rgba(255,255,255,0.55);
  transition: color .14s var(--ease-out);
}
.footer__legal:hover { color: var(--byd-cyan); }

/* ============= HERO COMMON ============= */

.hero {
  position: relative;
  background: linear-gradient(180deg, #1A2D4F 0%, #0E1B35 100%);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__slashes { position: absolute; inset: 0; pointer-events: none; }
.hero__slashes > i {
  position: absolute;
  display: block;
  transform: skewX(-12deg);
  transform-origin: top right;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 96px;
  width: 100%;
}

/* Hero variant 1 — type-led (default) */
.hero--type .hero__slashes > i.s1 { top: -80px; right: 6%; width: 110px; height: 130vh; background: var(--byd-cyan); opacity: 0.95; animation: slash-in 1.2s var(--ease-out) both; }
.hero--type .hero__slashes > i.s2 { top: -80px; right: -2%; width: 32px; height: 130vh; background: var(--byd-cyan-deep); opacity: 0.55; animation: slash-in 1.2s var(--ease-out) 100ms both; }
.hero--type .hero__slashes > i.s3 { top: -80px; right: 20%; width: 8px; height: 130vh; background: var(--byd-cyan-bright); opacity: 0.6; animation: slash-in 1.2s var(--ease-out) 200ms both; }
.hero--type .hero__slashes > i.s4 { top: -80px; right: 24%; width: 3px; height: 130vh; background: var(--byd-cyan); opacity: 0.5; animation: slash-in 1.2s var(--ease-out) 300ms both; }

@keyframes slash-in {
  from { transform: skewX(-12deg) translateY(-110%); }
  to   { transform: skewX(-12deg) translateY(0); }
}

/* Hero variant 2 — motion (animated background) */
.hero--motion { background: linear-gradient(180deg, #1A2D4F 0%, #0E1B35 100%); }
.hero--motion .motion-bg {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
/* Pulsing radial glow behind everything */
.hero--motion .motion-bg::before {
  content: "";
  position: absolute;
  top: 50%; right: -20%; width: 80%; height: 160%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(0,160,223,0.32) 0%, rgba(0,160,223,0) 60%);
  filter: blur(40px);
  animation: motion-breathe 8s ease-in-out infinite;
}
@keyframes motion-breathe {
  0%, 100% { opacity: 0.65; transform: translate(0, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(2%, -50%) scale(1.08); }
}
/* Flowing slashes */
.motion-slash {
  position: absolute;
  display: block;
  background: var(--byd-cyan);
  transform: skewX(-12deg) translateY(-120%);
  animation: motion-flow linear infinite;
  will-change: transform;
}
@keyframes motion-flow {
  from { transform: skewX(-12deg) translateY(-120%); }
  to   { transform: skewX(-12deg) translateY(220%); }
}
/* Scanning sweep — a bright slash crosses periodically */
.motion-sweep {
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--byd-cyan-bright) 50%, transparent 100%);
  transform: skewX(-12deg);
  filter: blur(1px);
  box-shadow: 0 0 24px rgba(25, 178, 238, 0.85), 0 0 48px rgba(25, 178, 238, 0.55);
  animation: motion-sweep 9s var(--ease-out) infinite;
  will-change: transform, opacity;
}
@keyframes motion-sweep {
  0%   { left: -10%; opacity: 0; }
  10%  { opacity: 0.95; }
  60%  { left: 110%; opacity: 0.6; }
  61%, 100% { opacity: 0; }
}
/* Subtle grid lines for tech feel */
.motion-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,160,223,0.06) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(0,160,223,0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
  opacity: 0.6;
}
/* Data points — small dots that pulse */
.motion-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--byd-cyan-bright);
  transform: skewX(-12deg);
  box-shadow: 0 0 12px rgba(25,178,238,0.9);
  animation: motion-dot 4s ease-in-out infinite;
}
@keyframes motion-dot {
  0%, 100% { opacity: 0.2; transform: skewX(-12deg) scale(0.6); }
  50%      { opacity: 1;   transform: skewX(-12deg) scale(1.2); }
}

/* Hero variant 3 — split */
.hero--split .hero__slashes > i.s1 { top: -80px; right: -40px; width: 60%; height: 130vh; background: var(--byd-navy-deep); opacity: 1; }
.hero--split .hero__slashes > i.s2 { top: -80px; right: 28%; width: 8px; height: 130vh; background: var(--byd-cyan); opacity: 0.95; animation: slash-in 1.2s var(--ease-out) 150ms both; }

/* ============= HERO FLOW — CSS-only animated slash field ============= */
.hero--flow .flow-bg {
  position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.hero--flow .flow-bg i {
  position: absolute; top: -25%; height: 150%;
  background: var(--byd-cyan);
  transform: skewX(-12deg) translateY(-130%);
  animation: flow-fall linear infinite;
  will-change: transform;
}
@keyframes flow-fall {
  from { transform: skewX(-12deg) translateY(-130%); }
  to   { transform: skewX(-12deg) translateY(130%); }
}
.hero--flow .flow-bg i:nth-child(1)  { left: 8%;  width: 10px; opacity: .85; animation-duration: 11s; animation-delay: -2s;  background: var(--byd-cyan); }
.hero--flow .flow-bg i:nth-child(2)  { left: 14%; width: 3px;  opacity: .5;  animation-duration: 16s; animation-delay: -6s;  background: var(--byd-cyan-bright); }
.hero--flow .flow-bg i:nth-child(3)  { left: 22%; width: 2px;  opacity: .35; animation-duration: 19s; animation-delay: -1s;  background: var(--byd-cyan-deep); }
.hero--flow .flow-bg i:nth-child(4)  { left: 58%; width: 5px;  opacity: .55; animation-duration: 13s; animation-delay: -4s;  background: var(--byd-cyan); }
.hero--flow .flow-bg i:nth-child(5)  { left: 66%; width: 90px; opacity: .9;  animation-duration: 14s; animation-delay: -9s;  background: var(--byd-cyan); }
.hero--flow .flow-bg i:nth-child(6)  { left: 74%; width: 3px;  opacity: .6;  animation-duration: 17s; animation-delay: -3s;  background: var(--byd-cyan-bright); }
.hero--flow .flow-bg i:nth-child(7)  { left: 80%; width: 28px; opacity: .7;  animation-duration: 12s; animation-delay: -7s;  background: var(--byd-cyan-deep); }
.hero--flow .flow-bg i:nth-child(8)  { left: 88%; width: 6px;  opacity: .5;  animation-duration: 15s; animation-delay: -5s;  background: var(--byd-cyan); }
.hero--flow .flow-bg i:nth-child(9)  { left: 94%; width: 14px; opacity: .8;  animation-duration: 13s; animation-delay: -11s; background: var(--byd-cyan); }
@media (prefers-reduced-motion: reduce) {
  .hero--flow .flow-bg i { animation: none; transform: skewX(-12deg); }
}

/* ============= MARQUEE / TRUST BAR ============= */

.marquee {
  overflow: hidden;
  position: relative;
  padding: 28px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--byd-navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.marquee__item::before {
  content: "";
  display: block;
  width: 10px; height: 22px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= STAT ============= */

.stat { display: flex; align-items: flex-end; gap: 18px; }
.stat__bar {
  display: block;
  width: 6px; height: 88px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  flex: 0 0 auto;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: 0.95;
  color: var(--byd-navy);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.stat__num--light { color: #fff; }
.stat__suffix { color: var(--byd-cyan); margin-left: 2px; }
.stat__label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 14px;
  max-width: 220px;
  line-height: 1.4;
}
.stat__label--light { color: rgba(255,255,255,0.65); }

/* ============= PAGE HEADER (for sub-pages) ============= */

.page-header {
  background: linear-gradient(180deg, #1A2D4F 0%, #0E1B35 100%);
  color: #fff;
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
}
.page-header__slash {
  position: absolute;
  top: 0; right: 0; width: 80px; height: 100%;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  transform-origin: top right;
  opacity: 0.95;
}
.page-header__slash--thin {
  position: absolute;
  top: 0; right: 12%; width: 6px; height: 100%;
  background: var(--byd-cyan-bright);
  transform: skewX(-12deg);
  opacity: 0.6;
}

/* ============= INPUTS ============= */

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--byd-navy);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--byd-navy);
  background: #fff;
  border: 1px solid var(--byd-navy-200);
  border-radius: 4px;
  padding: 14px 14px;
  outline: none;
  transition: border-color .14s var(--ease-out), box-shadow .14s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--byd-cyan);
  box-shadow: 0 0 0 4px rgba(0,160,223,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.field__error {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--byd-danger);
}

/* ============= UTILITY ============= */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

.divider-cyan {
  height: 6px; width: 64px;
  background: var(--byd-cyan);
  transform: skewX(-12deg);
  border: 0;
  margin: 0;
}

/* Language toggle visibility */
[data-i18n-en], [data-i18n-pt] { display: none; }
html[lang="pt-BR"] [data-i18n-pt] { display: inline; }
html[lang="en"]    [data-i18n-en] { display: inline; }
html[lang="pt-BR"] [data-i18n-pt-block] { display: block; }
html[lang="en"]    [data-i18n-en-block] { display: block; }
[data-i18n-pt-block], [data-i18n-en-block] { display: none; }
