:root {
  --accent: #216be9;
  --heading: #29294b;
  --text: #282424;
  --muted: #656575;
  --page: #faf8ff;
  --card: #ffffff;
  --border: #e9e8ff;
  --shadow: 0 2px 7px rgba(41, 41, 75, 0.06);
  --radius: 12px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--card);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.52;
  transition: color .2s ease, background .2s ease;
}

body.dark {
  --heading: #f2f2ff;
  --text: #e9e8f4;
  --muted: #b7b5c8;
  --page: #151522;
  --card: #20202e;
  --border: #343449;
  --shadow: 0 2px 7px rgba(0, 0, 0, .2);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

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

.screen-reader-text {
  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 {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 9px 14px;
  color: #fff;
  background: #111;
  border-radius: 6px;
}

.skip-link:focus {
  transform: none;
}

.topbar {
  min-height: 38px;
  color: #fff;
  background: linear-gradient(110deg, #2875ed 0%, #7659b7 50%, #ef4a63 100%);
  font-size: 12px;
  font-weight: 600;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 24px;
}

.topbar a {
  white-space: nowrap;
}

.site-header {
  background: var(--card);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 83px;
  padding-block: 13px 12px;
}

.brand-area {
  min-width: 360px;
}

.site-title {
  display: inline-block;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.55px;
  line-height: 1.25;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
}

.circle-button,
.theme-switch {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  padding: 0;
  color: var(--heading);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: color .18s, border-color .18s, background .18s;
}

.circle-button:hover,
.theme-switch:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.theme-switch {
  width: 56px;
  justify-content: flex-start;
  padding-left: 6px;
  background: #e8e7f1;
  border-color: transparent;
  border-radius: 18px;
}

body.dark .theme-switch {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 6px;
  background: #36364a;
}

.theme-switch span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #191924;
  background: #fff;
  border-radius: 50%;
  font-size: 13px;
}

.search-toggle {
  margin-left: 3px;
  border: 0;
  font-size: 24px;
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin-left: 5px;
  padding: 7px 16px;
  color: #fff;
  background: var(--accent);
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(33, 107, 233, .2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--heading);
}

.main-nav .nav-contact {
  display: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.more-button {
  padding: 4px;
  color: var(--heading);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
}

.menu-toggle {
  display: none;
}

.news-strip {
  min-height: 60px;
  overflow: hidden;
  background: var(--card);
  border-top: 1px solid rgba(233, 232, 255, .55);
  border-bottom: 1px solid var(--border);
}

.news-strip-inner {
  display: flex;
  align-items: center;
  min-height: 60px;
  gap: 26px;
}

.daily-news {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  color: #fff;
  background: var(--heading);
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
}

.daily-news span {
  color: #c8c6dc;
}

.ticker-window {
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
}

.ticker-track a {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  white-space: nowrap;
  font-size: 12px;
}

.ticker-track img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.ticker-date {
  color: var(--muted);
}

.page-background {
  padding: 39px 0 38px;
  background: var(--page);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  align-items: start;
  gap: 24px;
}

.posts-list {
  display: grid;
  gap: 24px;
}

.post-card {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 25px;
  min-height: 290px;
  padding: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-image-link {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  align-self: start;
  border-radius: 11px;
}

.post-image {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .4s ease;
}

.post-image-link:hover .post-image {
  transform: scale(1.035);
}

.post-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.post-copy h2 {
  margin: 0 0 11px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -.45px;
}

.post-copy h2 a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size .25s;
}

.post-copy h2 a:hover {
  background-size: 100% 2px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 12px;
}

.post-meta img {
  width: 28px;
  height: 28px;
  margin-right: 3px;
  object-fit: cover;
  border-radius: 50%;
}

.post-meta .clock {
  margin-left: 3px;
  color: var(--muted);
  font-size: 16px;
}

.post-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.post-tags {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px dashed var(--border);
  color: #4f4f59;
  font-size: 12px;
}

body.dark .post-tags {
  color: var(--muted);
}

.post-tags a {
  position: relative;
}

.post-tags a::before {
  position: absolute;
  top: 7px;
  left: -11px;
  width: 5px;
  height: 5px;
  content: "";
  background: #2f79ee;
  border-radius: 50%;
}

.sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 24px;
}

.search-card,
.recent-card {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-card label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.search-row {
  display: flex;
  gap: 8px;
}

.search-row input {
  min-width: 0;
  width: 100%;
  height: 42px;
  padding-inline: 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid #dedee8;
  border-radius: 22px;
  outline: none;
}

.search-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 107, 233, .12);
}

.search-row button {
  flex: 0 0 auto;
  padding: 0 22px;
  color: #fff;
  background: #2c3036;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.recent-card h2 {
  margin: 0 0 14px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  letter-spacing: -.5px;
}

.recent-card ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recent-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.35;
}

.recent-card li:first-child {
  padding-top: 0;
}

.recent-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-card a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.no-results {
  margin: 0;
  padding: 30px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.missed-section {
  padding: 29px 0 34px;
  overflow: hidden;
  background: var(--page);
  border-top: 1px solid var(--border);
}

.missed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.missed-heading h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 19px;
}

.missed-heading h2 span {
  margin-right: 7px;
  color: var(--accent);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--heading);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.slider-controls button:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.missed-track-wrap {
  overflow: hidden;
}

.missed-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  transition: transform .45s ease;
}

.missed-card {
  position: relative;
  flex: 0 0 282px;
  height: 310px;
  overflow: hidden;
  color: #fff;
  background: #333;
  border-radius: 11px;
}

.missed-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.missed-card:hover > img {
  transform: scale(1.04);
}

.missed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to bottom, transparent 26%, rgba(15, 16, 24, .15) 44%, rgba(15, 16, 24, .9) 100%);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
}

.pills span {
  padding: 4px 9px;
  background: rgba(78, 79, 87, .72);
  border-radius: 11px;
  font-size: 10px;
  line-height: 1.1;
}

.missed-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.3px;
}

.missed-card h3 a:hover {
  color: #cfe1ff;
}

.slide-count {
  width: max-content;
  margin: 25px auto 0;
  padding: 6px 13px;
  color: var(--heading);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.site-footer {
  padding-top: 48px;
  background: var(--card);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.1fr;
  gap: 70px;
  padding-bottom: 45px;
}

.site-footer h2 {
  margin: 0 0 17px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.site-footer p,
.site-footer li {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer section > p + p {
  margin-top: 20px;
}

.site-footer .disclaimer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  font-style: italic;
}

.copyright {
  padding: 20px 0 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.inner-page {
  min-height: 620px;
}

.article-grid {
  align-items: start;
}

.article-card,
.page-card,
.author-box {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero {
  overflow: hidden;
  background: #e9e8ef;
}

.article-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 36px;
}

.product-image-grid figure {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.product-image-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-image-grid .transparent-product img {
  padding: 16px;
  object-fit: contain;
  background: linear-gradient(145deg, #f4f6fb, #fff);
}

.product-image-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
  color: var(--heading);
  font-size: 14px;
  line-height: 1.4;
}

.product-image-grid figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.product-image-grid figcaption a {
  color: var(--accent);
  font-weight: 600;
}

.author-link,
.author-box h2 a,
.author-box p a {
  color: var(--heading);
  font-weight: 600;
}

.author-link:hover,
.author-box h2 a:hover,
.author-box p a:hover {
  color: var(--accent);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin: 0 0 26px;
  padding: 12px 16px;
  color: var(--muted);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
}

.identity-note,
.correction-log {
  margin: 24px 0 30px;
  padding: 22px 24px;
  color: var(--heading);
  background: linear-gradient(135deg, rgba(45, 113, 232, .09), rgba(241, 77, 103, .07));
  border: 1px solid rgba(45, 113, 232, .22);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.identity-note strong,
.correction-log strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}

.identity-note p,
.correction-log p {
  margin: 0;
}

.trust-grid,
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}

.trust-grid section,
.contact-channels section {
  padding: 22px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.trust-grid h3,
.contact-channels h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.trust-grid p,
.contact-channels p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.team-grid a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.contact-channels section > span,
.author-profile span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-channels .subscribe-button {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
}

.policy-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
  padding: 18px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.policy-index strong {
  width: 100%;
  margin-bottom: 3px;
  color: var(--heading);
}

.policy-index a {
  padding: 6px 10px;
  color: var(--heading);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.policy-index a:hover {
  color: var(--accent);
  border-color: rgba(45, 113, 232, .35);
}

.author-profile {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 30px;
  padding: 24px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.author-profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--card);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.author-profile h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.author-profile p {
  margin: 0;
  color: var(--muted);
}

.author-articles a {
  font-weight: 600;
}

.correction-levels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-head {
  padding: 28px 42px 8px;
}

.article-head h1,
.page-card > h1,
.archive-heading h1 {
  margin: 10px 0 18px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1.1px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.category-pills a {
  padding: 5px 11px;
  color: #fff;
  background: var(--accent);
  border-radius: 14px;
  font-size: 11px;
}

.article-meta {
  gap: 10px;
  color: var(--muted);
}

.article-content {
  padding: 20px 42px 45px;
  font-size: 16px;
  line-height: 1.78;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 34px 0 12px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}

.article-content h2 {
  font-size: 27px;
}

.article-content h3 {
  font-size: 23px;
}

.article-content p {
  margin: 0 0 19px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px;
  padding-left: 23px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content hr {
  margin: 20px 0 28px;
  border: 0;
  border-top: 1px solid var(--border);
}

.editor-note,
.warning-note {
  margin: 24px 0;
  padding: 18px 20px;
  color: var(--text);
  background: rgba(33, 107, 233, .08);
  border: 1px solid rgba(33, 107, 233, .2);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.warning-note {
  background: rgba(220, 82, 82, .08);
  border-color: rgba(220, 82, 82, .22);
  border-left-color: #d9534f;
}

.table-wrap {
  margin: 22px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.comparison-table th {
  color: var(--heading);
  background: var(--page);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.related-guides {
  margin-top: 38px;
  padding: 22px 24px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.related-guides > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.related-guides ul {
  margin: 0;
}

.related-guides li {
  margin-bottom: 6px;
}

.page-card {
  padding-top: 12px;
}

.page-card > h1 {
  font-size: clamp(30px, 4vw, 43px);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 22px;
}

.author-box img {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}

.author-box span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-box h2 {
  margin: 1px 0 4px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.author-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.archive-page {
  padding-top: 30px;
}

.archive-heading {
  margin-bottom: 30px;
  padding: 30px 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.archive-heading > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.archive-heading h1 {
  margin-bottom: 8px;
}

.archive-heading p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.static-contact-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-top: 24px;
}

.static-contact-form > div {
  margin: 0;
}

.static-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-weight: 600;
}

.static-contact-form input,
.static-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid #d8d8e4;
  border-radius: 7px;
  outline: none;
}

.static-contact-form input:focus,
.static-contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 107, 233, .12);
}

.static-contact-form button {
  justify-self: start;
  padding: 12px 24px;
  color: #fff;
  background: #25252d;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
}

.error-page {
  padding: 70px 35px;
  text-align: center;
}

.error-page > span {
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-size: 84px;
  line-height: 1;
}

.error-page h1 {
  margin: 12px 0;
}

.error-page .subscribe-button {
  margin-top: 18px;
}

.careers-shell {
  display: grid;
  gap: 30px;
}

.careers-hero {
  position: relative;
  overflow: hidden;
  padding: 58px clamp(28px, 7vw, 88px);
  background:
    radial-gradient(circle at 88% 18%, rgba(33, 107, 233, .22), transparent 29%),
    linear-gradient(135deg, #29294b 0%, #343269 56%, #216be9 145%);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(41, 41, 75, .16);
}

.careers-hero .eyebrow,
.apply-panel .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #a9c9ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.careers-hero h1 {
  max-width: 800px;
  margin: 0 0 17px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(37px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.careers-hero > p {
  max-width: 780px;
  margin: 0;
  color: #e9ecff;
  font-size: 17px;
  line-height: 1.7;
}

.careers-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
}

.careers-actions .subscribe-button {
  margin: 0;
  color: var(--heading);
  background: #fff;
}

.careers-actions .text-link {
  color: #fff;
  font-weight: 600;
}

.hiring-note,
.careers-section,
.role-jump,
.apply-panel,
.applicant-notes {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hiring-note {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: 25px;
  padding: 25px 30px;
}

.hiring-note > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 11px;
  height: 11px;
  background: #21b573;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(33, 181, 115, .13);
}

.hiring-note h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.hiring-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.careers-section {
  padding: clamp(28px, 5vw, 52px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-heading h2,
.apply-panel h2,
.applicant-notes h2 {
  margin: 5px 0 10px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: clamp(27px, 4vw, 39px);
  line-height: 1.2;
  letter-spacing: -.7px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.value-grid article {
  min-height: 145px;
  padding: 22px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.role-jump {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 22px;
}

.role-jump > span {
  margin-right: 5px;
  color: var(--heading);
  font-weight: 600;
}

.role-jump a {
  padding: 7px 12px;
  color: var(--accent);
  background: rgba(33, 107, 233, .08);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.roles-section {
  display: grid;
  gap: 25px;
}

.job-role {
  scroll-margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.role-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: end;
  gap: 30px;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(33, 107, 233, .1), rgba(117, 86, 183, .07));
}

.role-header span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.role-header h3 {
  margin: 1px 0 0;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.role-header p {
  margin: 0;
  color: var(--muted);
}

.role-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.role-facts span {
  padding: 13px 18px;
  background: var(--card);
  font-size: 11px;
}

.requirement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 30px;
}

.requirement-grid h4,
.apply-checklist h3 {
  margin: 0 0 13px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}

.requirement-grid ul,
.apply-checklist ul {
  margin: 0;
  padding-left: 20px;
}

.requirement-grid li,
.apply-checklist li {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.58;
}

.requirement-grid li::marker,
.apply-checklist li::marker {
  color: var(--accent);
}

.application-evidence {
  padding: 17px 30px;
  color: var(--muted);
  background: var(--page);
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.application-evidence strong {
  color: var(--heading);
}

.hiring-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hiring;
}

.hiring-steps li {
  position: relative;
  padding: 52px 20px 20px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 10px;
  counter-increment: hiring;
}

.hiring-steps li::before {
  position: absolute;
  top: 16px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  content: counter(hiring);
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}

.hiring-steps strong {
  display: block;
  margin-bottom: 7px;
  color: var(--heading);
}

.hiring-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.apply-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  padding: clamp(28px, 5vw, 50px);
  color: #fff;
  background: linear-gradient(135deg, #29294b, #216be9);
}

.apply-panel h2,
.apply-panel .apply-checklist h3 {
  color: #fff;
}

.apply-panel p,
.apply-panel a {
  color: #eef3ff;
}

.apply-checklist {
  padding: 25px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
}

.apply-checklist .subscribe-button {
  margin: 15px 0 0;
  color: var(--heading);
  background: #fff;
}

.applicant-notes {
  padding: clamp(28px, 5vw, 45px);
}

.applicant-notes > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.applicant-notes p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
}

.applicant-notes a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 15px;
  }

  .post-card {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .post-image {
    height: 225px;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    align-items: center;
  }

  .main-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% - 2px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 25px rgba(41, 41, 75, .15);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .nav-contact {
    display: block;
  }

  .more-button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    background: var(--heading);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .article-head,
  .article-content {
    padding-right: 28px;
    padding-left: 28px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiring-steps {
    grid-template-columns: 1fr 1fr;
  }

  .role-header {
    grid-template-columns: 230px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 38px 60px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar a {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-area {
    min-width: 0;
  }

  .site-title {
    font-size: 20px;
  }

  .header-tools {
    display: none;
  }

  .news-strip-inner {
    gap: 14px;
  }

  .ticker-track a {
    max-width: 440px;
  }

  .ticker-track a span:last-child {
    display: block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ticker-date {
    display: none;
  }

  .page-background {
    padding-block: 24px;
  }

  .posts-list {
    gap: 18px;
  }

  .post-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 14px;
  }

  .article-head,
  .article-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .article-head h1 {
    font-size: 29px;
  }

  .article-content {
    font-size: 15px;
  }

  .article-content h2 {
    font-size: 23px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .product-image-grid {
    grid-template-columns: 1fr;
  }

  .product-image-grid img {
    height: 240px;
  }

  .trust-grid,
  .contact-channels,
  .correction-levels {
    grid-template-columns: 1fr;
  }

  .author-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-profile img {
    margin-inline: auto;
  }

  .author-box {
    align-items: flex-start;
  }

  .careers-hero {
    padding: 38px 24px;
  }

  .careers-hero h1 {
    font-size: 38px;
  }

  .hiring-note,
  .role-header,
  .requirement-grid,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .hiring-steps,
  .applicant-notes > div {
    grid-template-columns: 1fr;
  }

  .role-facts {
    grid-template-columns: 1fr;
  }

  .hiring-note,
  .careers-section,
  .apply-panel,
  .applicant-notes {
    padding: 23px 18px;
  }

  .post-image-link,
  .post-copy,
  .post-tags {
    grid-column: 1;
    grid-row: auto;
  }

  .post-image {
    height: auto;
    aspect-ratio: 44 / 31;
  }

  .post-copy {
    padding-top: 15px;
  }

  .post-copy h2 {
    font-size: 19px;
  }

  .post-copy p {
    -webkit-line-clamp: 4;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .missed-card {
    flex-basis: 250px;
    height: 290px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
