.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--white); color: var(--fielse-blue-deep);
  padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--fielse-cyan); outline-offset: 3px; }

.news-hero { padding: clamp(120px, 15vw, 190px) 24px clamp(40px, 6vw, 64px); text-align: center; }
.news-hero__inner { max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--fielse-cyan); margin-bottom: 16px;
}
.news-hero__title {
  font-size: clamp(38px, 6vw, 72px); font-weight: 800; letter-spacing: -.035em; line-height: 1.04;
  background: linear-gradient(180deg, #FFFFFF 0%, #C5DAFF 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.news-hero__lead {
  margin-top: 18px; font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.78); max-width: 58ch; margin-inline: auto;
}

.cat-bar { padding: 0 24px 8px; }
.cat-bar__inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.chip {
  padding: 7px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.chip.is-active { background: #fff; color: #061849; border-color: #fff; }

.news-wrap { max-width: var(--max-width); margin: 0 auto; padding: clamp(32px, 5vw, 56px) 24px clamp(60px, 9vw, 110px); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.news-card {
  display: flex; flex-direction: column;
  border-radius: 14px; overflow: hidden;
  background: rgba(10, 14, 31, 0.32);
  border: 1px solid rgba(255,255,255,.09);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77,138,255,.45);
  box-shadow: 0 22px 50px rgba(6,24,73,.5);
}
.news-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--charcoal); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.news-card:hover .news-card__media img { transform: scale(1.05); }

.news-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; }
.news-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600;
}
.news-card__cat {
  color: var(--fielse-cyan); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 800;
}
.news-card__title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; line-height: 1.28; }
.news-card__title a { color: #fff; }
.news-card__title a:hover { color: var(--fielse-blue-glow); }
.news-card__excerpt { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; }

.empty-state { text-align: center; color: rgba(255,255,255,.6); padding: 80px 0; }

.pager { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 56px; }
.pager__btn {
  padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  border: 1px solid rgba(255,255,255,.2); color: #fff;
}
.pager__btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.pager__status { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600; }

.home-news { padding: clamp(60px, 8vw, 100px) 24px; border-top: 1px solid rgba(255,255,255,.1); }
.home-news__inner { max-width: var(--max-width); margin: 0 auto; }
.home-news__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.home-news__title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -.03em; }
.home-news__all { font-size: 14px; font-weight: 700; color: var(--fielse-cyan); white-space: nowrap; }

.draft-banner {
  background: var(--fielse-accent); color: #1a1400;
  text-align: center; padding: 10px 20px; font-weight: 700; font-size: 13.5px;
}

.article { max-width: 840px; margin: 0 auto; padding: clamp(110px, 13vw, 150px) 24px 0; }

.article__back { margin-bottom: 26px; }
.article__back a { font-size: 13.5px; font-weight: 700; color: var(--fielse-cyan); }

.article__title {
  font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; letter-spacing: -.035em; line-height: 1.08;
}
.article__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600;
}
.article__cat { color: var(--fielse-cyan); text-transform: uppercase; letter-spacing: .1em; font-size: 11.5px; font-weight: 800; }

.article__cover { margin: 34px 0 0; border-radius: 14px; overflow: hidden; }
.article__cover img { width: 100%; height: auto; }

.article__body {
  background: #FFFFFF;
  color: #17191F;
  border-radius: 18px;
  margin-top: 34px;
  padding: clamp(30px, 5vw, 60px) clamp(24px, 5vw, 68px) clamp(36px, 6vw, 68px);
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -.003em;
}
.article__lead {
  font-size: 21px; line-height: 1.6; color: #0B1220; font-weight: 500;
  margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid #E6EBF3;
}
.article__body p { margin-bottom: 22px; }
.article__body h2 {
  font-size: clamp(23px, 2.6vw, 31px); font-weight: 800; letter-spacing: -.025em;
  margin: 46px 0 14px; color: #0B1220; line-height: 1.2;
}
.article__body h3 { font-size: clamp(19px, 2vw, 22px); font-weight: 700; margin: 34px 0 10px; color: #0B1220; }
.article__body a { color: #1140CC; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article__body a:hover { color: #061849; }
.article__body ul, .article__body ol { margin: 0 0 22px; padding-inline-start: 26px; }
.article__body li { margin-bottom: 9px; }
.article__body strong { color: #000; font-weight: 700; }
.article__body code {
  font-family: ui-monospace, Menlo, monospace; font-size: .87em;
  background: #EEF2F8; color: #0A2B7A; padding: 2px 7px; border-radius: 5px;
}
.article__body blockquote {
  border-inline-start: 3px solid var(--fielse-blue);
  padding-inline-start: 24px; margin: 32px 0; color: #2C3242;
  font-size: 21px; line-height: 1.6; font-weight: 500;
}
.article__body figure { margin: 34px 0; }
.article__body figure img, .article__body p > img { width: 100%; border-radius: 10px; }
.article__body figcaption { font-size: 13px; color: #63708C; margin-top: 10px; text-align: center; }
.article__body hr { border: 0; height: 1px; background: #E6EBF3; margin: 42px 0; }

.article__foot {
  margin: 34px 0; padding-top: 0;
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
}
.share { display: flex; align-items: center; gap: 10px; }
.share__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); }
.share a {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; font-size: 13px; font-weight: 700;
}
.share a:hover { background: var(--fielse-blue); }
.share__copy {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 15px;
}
.share__copy:hover { color: #fff; border-color: rgba(255,255,255,.45); }

.article__langs { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.article__langs a {
  font-weight: 700; color: #fff; border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px; padding: 4px 10px; font-size: 12px;
}
.article__langs a:hover { border-color: var(--fielse-cyan); color: var(--fielse-cyan); }

.related { padding: clamp(50px, 8vw, 90px) 24px clamp(60px, 9vw, 110px); border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; }
.related__inner { max-width: var(--max-width); margin: 0 auto; }
.related__title { font-size: clamp(26px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 34px; }

/* --- 404 ----------------------------------------------------------------- */
.err { max-width: 620px; margin: 0 auto; padding: clamp(140px, 18vw, 220px) 24px clamp(90px, 12vw, 160px); text-align: center; }
.err__code { font-size: 90px; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: rgba(255,255,255,.18); }
.err__title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em; margin: 10px 0 14px; }
.err__body { color: var(--gray-300); margin-bottom: 32px; }
.err__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.lang-menu a {
  display: block; width: 100%; padding: 8px 12px;
  font-size: 13px; color: var(--gray-300); border-radius: 4px; font-weight: 500;
}
.lang-menu a:hover { background: var(--fielse-blue); color: #fff; }
.lang-menu a.active { color: var(--fielse-blue-glow); font-weight: 600; }

/* --- RTL ----------------------------------------------------------------- */
[dir="rtl"] .article__body blockquote { border-inline-start: 3px solid var(--fielse-blue-glow); }

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; gap: 22px; }
  .article__foot { flex-direction: column; align-items: flex-start; }
  .home-news__head { flex-direction: column; gap: 10px; align-items: flex-start; }
}

.nav-drop { position: relative; }
.nav-drop__btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; font-size: 16px; font-weight: 500;
  color: var(--gray-300); padding: 4px 0; cursor: pointer;
  background: none; border: 0;
}
.nav-drop__btn:hover { color: #fff; }
.nav-drop__btn svg { width: 13px; height: 13px; transition: transform .25s var(--ease-out); }
.nav-drop.open .nav-drop__btn { color: #fff; }
.nav-drop.open .nav-drop__btn svg { transform: rotate(180deg); }

.nav-drop__menu {
  position: absolute; top: calc(100% + 12px); inset-inline-start: -14px;
  min-width: 210px; padding: 7px;
  background: rgba(10, 14, 31, .96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  box-shadow: 0 16px 44px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
  z-index: 1000;
}
.nav-drop.open .nav-drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop__menu a {
  display: block; padding: 9px 13px;
  font-size: 13.5px; font-weight: 500; color: var(--gray-300);
}
.nav-drop__menu a:hover { background: var(--fielse-blue); color: #fff; }

.nav-ext { display: inline-flex; align-items: center; gap: 6px; }
.nav-ext svg { opacity: .7; }


.page-brand .brand-hero { padding: clamp(120px, 15vw, 190px) 24px clamp(30px, 5vw, 50px); text-align: center; }
.brand-hero__inner { max-width: 720px; margin: 0 auto; }
.brand-hero__title {
  font-size: clamp(36px, 5.6vw, 66px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
}
.brand-hero__lead { margin-top: 18px; font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.72); }

.brand-wrap { max-width: 980px; margin: 0 auto; padding: 0 24px clamp(70px, 10vw, 120px); }

.brand-sec { padding: clamp(44px, 6vw, 72px) 0; border-top: 1px solid rgba(255,255,255,.1); }
.brand-sec:first-child { border-top: 0; }
.brand-sec__title {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .22em;
  color: var(--fielse-blue); margin-bottom: 26px;
}
.brand-sec__note { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 62ch; }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.logo-card {
  border-radius: 14px; padding: 44px 30px 22px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.logo-card--dark { background: #000; }
.logo-card--light { background: #fff; }
.logo-card--blue { background: #395FFF }
.logo-card svg { height: 46px; width: auto; }
.logo-card__foot {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px; font-weight: 600;
}
.logo-card--light .logo-card__foot { border-top-color: rgba(0,0,0,.12); color: #63708C; }
.logo-card__foot a { color: var(--fielse-cyan); font-weight: 700; }
.logo-card--light .logo-card__foot a { color: #1140CC; }

.swatch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.swatch {
  border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.swatch:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); }
.swatch__chip { height: 92px; }
.swatch__meta { padding: 13px 15px 15px; background: rgba(255,255,255,.04); }
.swatch__name { font-size: 13.5px; font-weight: 700; }
.swatch__hex {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px;
  color: rgba(255,255,255,.55); margin-top: 3px;
}
.swatch.is-copied .swatch__hex { color: var(--fielse-cyan); }
.swatch.is-copied .swatch__hex::after { content: ' ✓'; }

.type-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 30px 32px;
}
.type-card__sample { font-size: clamp(32px, 5vw, 54px); font-weight: 900; letter-spacing: -.035em; line-height: 1.1; }
.type-card__scale { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.type-card__scale div { font-size: 13px; color: rgba(255,255,255,.6); }
.type-card__scale b { display: block; font-size: 22px; color: #fff; margin-bottom: 3px; }

.rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.rule { padding: 20px 22px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); }
.rule--do { background: rgba(18,128,92,.09); border-color: rgba(79,209,165,.25); }
.rule--dont { background: rgba(193,53,43,.08); border-color: rgba(240,138,128,.22); }
.rule h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.rule--do h3 { color: #4FD1A5; }
.rule--dont h3 { color: #F08A80; }
.rule ul { list-style: none; }
.rule li { font-size: 14px; color: rgba(255,255,255,.75); padding: 6px 0 6px 18px; position: relative; line-height: 1.6; }
.rule li::before { content: '*'; position: absolute; inset-inline-start: 0; opacity: .45; }

@media (max-width: 900px) {
  .nav-drop { display: none; }
}
.mobile-menu {
  z-index: 9999;
  background: #05070F;
  height: 100dvh;
}
.site-header.is-scrolled .mobile-menu { position: fixed; inset: 0; }