:root {
  --max: 1100px;
  --radius: 18px;

  --bg: #ffffff;
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --stroke: rgba(11, 18, 32, 0.1);

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);

  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.92);

  --green: #0f3d2e;
  --green-2: #156b4a;
  --orange: #c35a1e;
  --orange-2: #e07a2f;

  --accent: var(--green-2);
  --accent-strong: var(--green);
  --accent-warm: var(--orange);

  --news-red: #e11d48;
  --news-red-deep: #b31233;

  --li-h: 610px;
  --li-blue: #0a66c2;
  --li-blue-deep: #084c8f;

  --ticker-speed: 115s;
  --ticker-speed-mobile: 220s;
  --ticker-start-delay: 1.5s;
  --ticker-distance: 50%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.bg-accents { position: fixed; inset: 0; pointer-events: none; z-index: -2; }
.accent { position: absolute; filter: blur(40px); opacity: 0.35; }
.accent--one {
  width: 420px; height: 420px; left: -120px; top: -120px;
  background: radial-gradient(circle, rgba(21, 107, 74, 0.55), transparent 60%);
}
.accent--two {
  width: 420px; height: 420px; right: -140px; top: 120px;
  background: radial-gradient(circle, rgba(195, 90, 30, 0.45), transparent 60%);
}
.accent--pattern {
  inset: 0;
  background-image: radial-gradient(rgba(11, 18, 32, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  filter: none;
  position: absolute;
}

/* Uniform button system */
.btn,
.nav__link,
.li__openLink,
.li__helpBtn,
.li__followBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn,
.li__openLink,
.li__helpBtn,
.li__followBtn {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
}

.btn:hover,
.nav__link:hover,
.li__openLink:hover,
.li__helpBtn:hover,
.li__followBtn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--primary {
  color: #fff;
  border-color: rgba(21, 107, 74, 0.35);
  background: linear-gradient(90deg, var(--green-2), var(--green));
}

.btn--ghost { background: rgba(255, 255, 255, 0.86); }

.btn--small,
.li__followBtn {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn--li {
  color: #fff;
  border-color: rgba(10, 102, 194, 0.35);
  background: linear-gradient(90deg, var(--li-blue), var(--li-blue-deep));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.nav { width: 100%; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo { width: 42px; height: 42px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 900; letter-spacing: -0.02em; }
.brand__tag { font-size: 12px; font-weight: 700; color: rgba(11, 18, 32, 0.6); margin-top: 3px; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggleIcon { display: grid; place-items: center; }
.nav__icon { display: none; }
.nav__icon--menu { display: block; }
body.nav-open .nav__icon--menu { display: none; }
body.nav-open .nav__icon--close { display: block; }

.nav__menu { display: flex; align-items: center; gap: 10px; }
.nav__link {
  color: rgba(11, 18, 32, 0.82);
  padding: 0 14px;
}
.nav__link--cta {
  background: rgba(21, 107, 74, 0.1);
  border: 1px solid rgba(21, 107, 74, 0.18);
}
.nav__link--live {
  background: rgba(195, 90, 30, 0.1);
  border: 1px solid rgba(195, 90, 30, 0.18);
}
.nav__link--li {
  background: rgba(10, 102, 194, 0.08);
  border: 1px solid rgba(10, 102, 194, 0.14);
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--news-red);
  box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.15);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 59;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
body.nav-open .nav__overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.ticker {
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  background: rgba(255, 255, 255, 0.88);
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.ticker__left { display: flex; align-items: center; gap: 10px; min-width: 210px; }
.ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--news-red), var(--news-red-deep));
}
.ticker__led {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}
.ticker__label { font-weight: 900; color: rgba(11, 18, 32, 0.78); font-size: 13px; }
.ticker__rail { overflow: hidden; flex: 1; }
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation-name: tickerMove;
  animation-duration: var(--ticker-speed);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--ticker-start-delay);
  animation-fill-mode: both;
}
@keyframes tickerMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--ticker-distance)), 0, 0); }
}
.ticker__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; }
.ticker__item a { color: rgba(11, 18, 32, 0.84); }
.ticker__item a:hover { color: var(--green); }
.ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(21, 107, 74, 0.9);
  box-shadow: 0 0 0 6px rgba(21, 107, 74, 0.14);
}
.ticker__src { font-size: 12px; color: rgba(11, 18, 32, 0.54); font-weight: 750; }

.hero { position: relative; padding: 58px 0 36px; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 107, 74, 0.13), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(195, 90, 30, 0.12), transparent 55%);
  z-index: -1;
}
.hero__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.hero__content,
.panel-card,
.card,
.competency,
.project,
.presence__card,
.news-card,
.cta__form {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.hero__content { padding: 22px; }
.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  border: 1px solid rgba(15, 61, 46, 0.14);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}
.hero__title {
  margin-top: 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 54px);
}
.u-em { color: var(--green-2); }
.hero__lead { margin-top: 12px; color: rgba(11, 18, 32, 0.7); font-weight: 650; }
.hero__actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero__stats { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.stat {
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 12px;
}
.stat__num { font-weight: 950; }
.stat__label { font-size: 12px; color: rgba(11, 18, 32, 0.62); font-weight: 750; margin-top: 2px; }

.panel-card { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.panel-card__top { display: flex; flex-wrap: wrap; gap: 8px; }
.panel-card__title { font-weight: 950; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.1; }
.panel-card__text { color: rgba(11, 18, 32, 0.72); font-weight: 650; }
.panel-card__media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(21,107,74,.08), rgba(195,90,30,.08));
}
.panel-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.panel-card__cta { margin-top: auto; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 107, 74, 0.1);
  border: 1px solid rgba(21, 107, 74, 0.16);
  font-weight: 850;
  font-size: 12px;
  color: var(--green);
}
.pill--muted {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.72);
}
.text-link { font-weight: 850; color: var(--green); }

.section { padding: 78px 0; }
.section--muted { background: rgba(11, 18, 32, 0.02); }
.section__head { text-align: center; max-width: 74ch; margin: 0 auto 18px; }
.section__head--split {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.section__title { font-size: clamp(26px, 3vw, 38px); font-weight: 950; letter-spacing: -0.03em; }
.section__sub { margin-top: 8px; color: rgba(11, 18, 32, 0.66); font-weight: 650; }

.grid { display: grid; gap: 14px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 16px; }
.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(21, 107, 74, 0.1);
  border: 1px solid rgba(21, 107, 74, 0.18);
  color: var(--green);
}
.icon { width: 22px; height: 22px; fill: currentColor; }
.card__title { margin-top: 12px; font-weight: 950; }
.card__text { margin-top: 8px; color: rgba(11, 18, 32, 0.7); font-weight: 650; }

.competency { padding: 18px; }
.competency__top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.competency__badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(21, 107, 74, 0.1);
  border: 1px solid rgba(21, 107, 74, 0.16);
  font-weight: 900;
  color: var(--green);
}
.competency__title { font-weight: 900; }
.competency__text { color: rgba(11, 18, 32, 0.72); font-weight: 650; }
.competency__list { margin-top: 14px; padding-left: 18px; color: rgba(11, 18, 32, 0.74); }
.competency__list li + li { margin-top: 8px; }

.project { overflow: hidden; }
.project__img {
  background: linear-gradient(135deg, rgba(21,107,74,.08), rgba(195,90,30,.08));
  min-height: 220px;
}
.project__img img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.project__body { padding: 18px; }
.project__title { font-weight: 950; }
.project__text { margin-top: 8px; color: rgba(11, 18, 32, 0.7); font-weight: 650; }
.project__meta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 107, 74, 0.1);
  border: 1px solid rgba(21, 107, 74, 0.16);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}
.badge--muted {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.72);
}

.presence {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}
.presence__map {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presence__map img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
}
.presence__content { display: grid; gap: 14px; }
.presence__card { padding: 20px; }
.presence__card--accent {
  background: linear-gradient(180deg, rgba(21,107,74,.08), rgba(255,255,255,.92));
}
.presence__title { font-weight: 950; }
.presence__text { margin-top: 8px; color: rgba(11, 18, 32, 0.72); font-weight: 650; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.news-card { padding: 18px; }
.news-card__title { font-weight: 900; line-height: 1.25; }
.news-card__meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(11, 18, 32, 0.56);
  font-size: 13px;
  font-weight: 750;
}
.news-card__src { color: var(--green); }
.news-card__link { margin-top: 14px; display: inline-flex; font-weight: 850; color: var(--green); }

.cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 107, 74, 0.12), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(195, 90, 30, 0.12), transparent 42%),
    rgba(11, 18, 32, 0.02);
}
.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
}
.cta__copy {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.cta__title { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; font-weight: 950; letter-spacing: -0.03em; }
.cta__text { margin-top: 12px; color: rgba(11, 18, 32, 0.7); font-weight: 650; }
.cta__form { padding: 20px; }
.cta__actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.field { display: grid; gap: 8px; }
.field + .field { margin-top: 14px; }
.field label { font-size: 13px; font-weight: 850; color: rgba(11, 18, 32, 0.72); }
.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(21, 107, 74, 0.4);
  box-shadow: 0 0 0 4px rgba(21, 107, 74, 0.08);
}
textarea { resize: vertical; min-height: 120px; }

.footer {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 34px 0 22px;
}
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__left { max-width: 52ch; }
.footer__logo { width: 46px; height: 46px; object-fit: contain; }
.footer__text { margin-top: 10px; color: rgba(11, 18, 32, 0.7); font-weight: 650; }
.footer__right { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__col { display: grid; gap: 8px; }
.footer__head { font-weight: 950; }
.footer__col a { color: rgba(11, 18, 32, 0.72); font-weight: 750; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { margin-top: 18px; color: rgba(11, 18, 32, 0.62); font-weight: 700; font-size: 13px; }

.section--li {
  background:
    radial-gradient(circle at 20% 30%, rgba(21, 107, 74, 0.10), transparent 48%),
    radial-gradient(circle at 80% 20%, rgba(195, 90, 30, 0.08), transparent 48%);
}
.li__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.li__card {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.li__embedWrap {
  position: relative;
  height: var(--li-h);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
}
.li__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.li__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,61,46,.06), rgba(195,90,30,.10), rgba(15,61,46,.06));
  background-size: 240% 100%;
  animation: liShimmer 1.2s linear infinite;
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}
.li__card:not(.li__card--loading) .li__shimmer { display: none; }
@keyframes liShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 240% 0%; }
}
.li__footer {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.li__openLink,
.li__helpBtn {
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
  max-width: 100%;
  white-space: nowrap;
}
.li__openLink { background: rgba(255, 255, 255, 0.94); }
.li__helpBtn { background: rgba(255, 255, 255, 0.86); cursor: pointer; }
.li__helpPanel {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 5;
  padding: 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(21,107,74,.10), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(195,90,30,.12), transparent 45%),
    rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
}
.li__card--help .li__helpPanel { display: flex; align-items: center; justify-content: center; }
.li__helpInner {
  text-align: center;
  max-width: 52ch;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.li__helpTitle { font-size: 20px; font-weight: 900; }
.li__helpText { margin-top: 10px; color: rgba(11, 18, 32, 0.7); }
.li__helpActions { margin-top: 16px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 1020px) {
  .hero__inner,
  .presence,
  .cta__inner { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3,
  .news-grid,
  .li__grid,
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section__head--split { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 26px)); }
  .nav__toggle { display: inline-flex; }

  .nav__menu {
    position: fixed;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 18px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 18, 32, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 61;
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { width: 100%; justify-content: flex-start; }

  .ticker__track { animation-duration: var(--ticker-speed-mobile); }
  .ticker__inner { padding: 6px 0; gap: 10px; }
  .ticker__left { min-width: auto; gap: 6px; }
  .ticker__live { font-size: 10px; padding: 4px 8px; gap: 6px; }
  .ticker__led { width: 6px; height: 6px; box-shadow: 0 0 0 5px rgba(255,255,255,.16); }
  .ticker__label { font-size: 11px; }
  .ticker__item { font-size: 12px; gap: 6px; }
  .ticker__dot { width: 6px; height: 6px; box-shadow: 0 0 0 5px rgba(21,107,74,.12); }
  .ticker__src { font-size: 10px; }

  .hero { padding-top: 42px; }
  .hero__content,
  .panel-card,
  .presence__map,
  .cta__copy,
  .cta__form { padding: 18px; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--3,
  .grid--4,
  .news-grid,
  .li__grid,
  .projects-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .brand__name { font-size: 15px; }
  .cta,
  .section { padding: 62px 0; }
  .hero__actions,
  .cta__actions { flex-direction: column; }
  .hero__actions .btn,
  .cta__actions .btn,
  .section__head--split .btn,
  .li__followBtn { width: 100%; }
  .presence__map { min-height: 280px; }
  .presence__map img { max-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track,
  .live-dot,
  .li__shimmer { animation: none; }
}

.field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form__hint {
  margin-top: 14px;
  color: rgba(11, 18, 32, 0.56);
  font-size: 13px;
  font-weight: 650;
}

.form__status {
  min-height: 22px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 750;
  color: rgba(11, 18, 32, 0.7);
}

.form__status.is-error {
  color: #b42318;
}

.form__status.is-success {
  color: var(--green);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(180, 35, 24, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.field__error {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: #b42318;
}

.field__error.is-visible {
  display: block;
}


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

.field__labelNote {
  color: rgba(11, 18, 32, 0.52);
  font-weight: 700;
}

.field__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field__count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.48);
}

.field--hiddenTrap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .field--split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}
