.wm {
  display: block;
  width: 120px;
  height: auto;
}
html[data-theme="light"] .wm {
  content: url("../brand/numyra-wordmark-light.svg");
}

.head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--head-h);
  padding: 12px 0;
}
.head-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.theme-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.theme-toggle:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
}
.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: opacity 0.2s ease, transform 0.28s var(--ease);
}
.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.theme-icon-moon {
  opacity: 0;
  transform: rotate(-25deg) scale(0.65);
}
html[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(25deg) scale(0.65);
}
html[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.head-nav .navlink {
  position: relative;
  padding: 10px 0;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.18s ease;
}
.head-nav .navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.head-nav .navlink:hover {
  color: var(--text);
}
.head-nav .navlink:hover::after,
.head-nav .navlink.active::after {
  width: 100%;
}
.head-nav .navlink.active {
  color: var(--text);
}

.menu {
  display: none;
  position: relative;
}
.menu > summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  background: transparent;
  list-style: none;
  cursor: pointer;
}
.menu > summary::-webkit-details-marker {
  display: none;
}
.menu .bars,
.menu .bars::before,
.menu .bars::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, top 0.2s ease;
}
.menu .bars {
  position: relative;
}
.menu .bars::before {
  position: absolute;
  top: -6px;
}
.menu .bars::after {
  position: absolute;
  top: 6px;
}
.menu[open] .bars {
  background: transparent;
}
.menu[open] .bars::before {
  top: 0;
  transform: rotate(45deg);
}
.menu[open] .bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(300px, calc(100vw - var(--gutter)));
  display: grid;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
.menu-panel a {
  padding: 14px 18px;
  white-space: nowrap;
  border-bottom: 1px solid var(--rule);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.menu-panel a:hover {
  color: var(--accent);
}
.menu-panel a:last-child {
  border-bottom: 0;
  color: var(--accent);
}

.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1px solid var(--rule-strong);
  background: var(--button-bg);
  color: var(--button-text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 22px -12px rgba(0, 0, 0, 0.72);
  transition: background 0.18s ease, box-shadow 0.22s ease, transform 0.18s var(--ease);
}
.cta-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(7, 8, 10, 0.2) 0%, transparent 50%);
  opacity: 0.12;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}
.cta-primary span,
.cta-primary svg {
  position: relative;
  z-index: 1;
}
.cta-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.cta-primary:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 32px -14px rgba(0, 0, 0, 0.8);
}
.cta-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.cta-primary:hover svg {
  transform: translateX(4px);
}
.cta-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 3px 10px -8px rgba(0, 0, 0, 0.7);
}
.cta-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.head-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 11px 19px;
  border-radius: 10px;
  border: 1px solid var(--rule-strong);
  background: var(--button-bg);
  color: var(--button-text);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.65);
  transition: background 0.18s ease, transform 0.18s var(--ease), box-shadow 0.18s ease;
}
.head-cta:hover {
  background: var(--button-hover);
  color: var(--button-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.8);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--rule-strong);
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0);
  }
}

.flag {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.tag-swiss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.led {
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55)) drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3))
    drop-shadow(0 0 38px rgba(var(--accent-rgb), 0.18));
  animation: led-flicker var(--led-dur, 7s) infinite;
  will-change: opacity, filter;
}
.led > .led-in {
  color: var(--accent);
}
@keyframes led-flicker {
  0% {
    opacity: 0.35;
    filter: drop-shadow(0 0 2px rgba(var(--accent-rgb), 0.4));
  }
  3% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55)) drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3));
  }
  5% {
    opacity: 0.2;
    filter: none;
  }
  7% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55)) drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3));
  }
  9% {
    opacity: 0.5;
  }
  11% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.7)) drop-shadow(0 0 22px rgba(var(--accent-rgb), 0.4));
  }
  13% {
    opacity: 0.3;
    filter: drop-shadow(0 0 2px rgba(var(--accent-rgb), 0.3));
  }
  16% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.85)) drop-shadow(0 0 26px rgba(var(--accent-rgb), 0.45));
  }
  24% {
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), 0.6)) drop-shadow(0 0 22px rgba(var(--accent-rgb), 0.35));
  }
  45% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.85)) drop-shadow(0 0 28px rgba(var(--accent-rgb), 0.5))
      drop-shadow(0 0 48px rgba(var(--accent-rgb), 0.25));
  }
  66% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55)) drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3));
  }
  78% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.2;
    filter: none;
  }
  82% {
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55));
  }
  84% {
    opacity: 0.15;
    filter: none;
  }
  86% {
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), 0.65)) drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.35));
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.55)) drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3));
  }
}
.plate {
  position: relative;
  padding: 92px 0;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.plate > .wrap {
  position: relative;
  z-index: 1;
}
.plate.band {
  background-color: var(--plate-band);
}

.plate-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
}
.plate-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 80px;
  height: 1px;
  background: var(--accent);
}
.plate-head.stack {
  display: block;
}
.plate-head h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.35vw, 60px);
  font-weight: 600;
  letter-spacing: -0.036em;
  line-height: 1;
}
.plate-head.stack h2 {
  max-width: 20ch;
}
.plate-head h2.tight {
  max-width: 18ch;
  letter-spacing: -0.042em;
}
.plate-head .right {
  max-width: 48ch;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.plate-head.stack .right {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.5;
}
.plate-head .right p {
  margin: 0 0 14px;
}
.plate-head .right p:last-child {
  margin-bottom: 0;
}
.plate-head .right b {
  color: var(--text);
  font-weight: 600;
}

.plate-head.with-box {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
}
.plate-head.with-box > div,
.plate-head.with-box .quote-box {
  align-self: center;
}

.quote-box {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  margin: 0;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 90% 10%, rgba(var(--accent-rgb), 0.09), transparent 32%), var(--surface);
  overflow: hidden;
}
.quote-box::before {
  content: "\201C";
  position: absolute;
  top: -0.12em;
  right: 0.12em;
  color: rgba(var(--accent-rgb), 0.12);
  font-family: var(--serif);
  font-size: clamp(130px, 13vw, 210px);
  line-height: 1;
  pointer-events: none;
}
.quote-box blockquote {
  position: relative;
  max-width: 34ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.statement {
  margin: 0 0 34px;
  color: var(--text);
  font-size: clamp(20px, 1.85vw, 27px);
  font-weight: 500;
  letter-spacing: -0.024em;
  line-height: 1.25;
}
.statement b {
  color: var(--accent);
  font-weight: 500;
}

.kicker {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coverage {
  margin-top: clamp(44px, 4.2vw, 62px);
  padding-top: clamp(28px, 2.8vw, 38px);
}
.coverage-head {
  margin: 0 0 clamp(22px, 2.2vw, 30px);
  color: var(--text);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
.coverage-list {
  margin: 0;
  border-top: 1px solid var(--line);
}
.coverage-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding: 17px clamp(6px, 1vw, 14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}
.coverage-row:hover {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.035), transparent 72%);
}
.coverage-row dt {
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.coverage-row dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.coverage-note {
  margin: 15px 0 0;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  text-align: right;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: rgba(240, 237, 224, 0.03);
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.coverage-row:hover .chip {
  border-color: rgba(var(--accent-rgb), 0.34);
  background: rgba(var(--accent-rgb), 0.07);
}
.chip .chip-logo {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.85;
}
.chip .chip-logo.logo-invert {
  filter: invert(1);
}

.ptable-scroll {
  overflow-x: auto;
  scrollbar-color: var(--accent) var(--ink-2);
}
.ptable {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-top: 1px solid var(--rule-strong);
}
.ptable caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.ptable th,
.ptable td {
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: middle;
}
.ptable thead th {
  padding: 22px 18px 20px 0;
  border-bottom-color: var(--rule-strong);
}
.ptable thead th.cap {
  width: 46%;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ptable .tier {
  display: block;
  color: var(--text);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ptable .verb {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ptable tbody th {
  padding: 15px 24px 15px 0;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
}
.ptable tbody td {
  width: 18%;
  padding: 15px 18px 15px 0;
}
.ptable .plan-value {
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ptable .yes,
.ptable .no {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 12px;
}
.ptable .yes::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  width: 8px;
  height: 13px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  filter: drop-shadow(0 0 4px rgba(var(--accent-rgb), 0.45));
  transform: rotate(45deg);
}
.ptable .no::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 12px;
  height: 1px;
  background: var(--text-2);
}
.plans-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}
.plans-foot .note {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 108px;
  padding-top: 4px;
}
.faq-aside h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.05;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
  transition: color 0.15s ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--accent);
}
.faq summary .sign {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 8px;
}
.faq summary .sign::before,
.faq summary .sign::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq summary .sign::after {
  transform: rotate(90deg);
}
.faq details[open] summary .sign::after {
  transform: rotate(0deg);
}
.faq .answer {
  max-width: 68ch;
  padding: 0 0 30px;
}
.faq .answer p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq .answer p:last-child {
  margin-bottom: 0;
}
.faq .answer p b {
  color: var(--text);
  font-weight: 600;
}

.closing {
  position: relative;
  padding: clamp(86px, 10vw, 132px) 0;
  background: var(--accent);
  color: var(--on-accent);
  overflow: hidden;
}
.closing-mark {
  position: absolute;
  right: 5%;
  bottom: 9%;
  width: min(30vw, 330px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
}
.closing .wrap {
  position: relative;
  z-index: 1;
}
.closing h2 {
  max-width: 14ch;
  margin: 0 0 38px;
  color: var(--on-accent);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 0.94;
}
.closing h2 .it {
  color: var(--on-accent);
}
.closing .cta-primary {
  padding: 22px 30px;
  background: #fff;
  color: var(--button-text);
  font-size: 13px;
  box-shadow: 0 6px 20px -10px rgba(7, 8, 10, 0.5);
}
.closing .cta-primary::before {
  display: none;
}
.closing .cta-primary:hover {
  background: var(--button-hover);
  color: var(--button-text);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(7, 8, 10, 0.65);
}
.closing .cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px -8px rgba(7, 8, 10, 0.6);
}

.site-foot {
  padding: 72px 0 0;
  background: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.foot-brand .wm {
  margin-bottom: 18px;
}
.foot-brand p {
  max-width: 34ch;
  margin: 0 0 16px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}
.foot-brand .tag-swiss {
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.supported-by {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: #fff;
  color: #181b19;
  box-shadow: 0 10px 28px -20px rgba(255, 255, 255, 0.48);
}
.supported-by-label {
  color: #535750;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}
.supported-logo {
  display: block;
  width: 116px;
  aspect-ratio: 1831 / 1000;
  flex: 0 0 auto;
  background: url("../partners/usi-startup-centre.svg") center / contain no-repeat;
}
.foot-col h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-col ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-col a {
  color: var(--text-2);
  font-size: 14px;
  transition: color 0.15s ease;
}
.foot-col a:hover {
  color: var(--accent);
}
.foot-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 32px;
}
.foot-bar p {
  margin: 0;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.foot-bar a {
  transition: color 0.15s ease;
}
.foot-bar a:hover {
  color: var(--accent);
}

html[data-theme="light"] .chip .chip-logo {
  filter: grayscale(1) brightness(0);
}
html[data-theme="light"] .chip .chip-logo.logo-invert {
  filter: none;
}

@media (max-width: 1080px) {
  .plate-head.with-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .head-nav {
    gap: 14px;
  }
  .head-nav .navlink {
    display: none;
  }
  .menu {
    display: block;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-aside {
    position: static;
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .plate {
    padding: 72px 0;
  }
  .plate-head,
  .plate-head.with-box {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 38px;
  }
  .plate-head h2 {
    font-size: clamp(36px, 9vw, 50px);
  }
  .coverage-row {
    grid-template-columns: 1fr;
    gap: 13px;
    align-items: start;
    padding-left: 0;
    padding-right: 0;
  }
  .coverage-note {
    text-align: left;
  }
  .closing {
    padding: 82px 0;
  }
}

@media (max-width: 780px) {
  .tag {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .cta-primary {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .wm {
    width: 104px;
  }
  .head-inner {
    padding: 13px 0;
  }
}

@media (max-width: 600px) {
  .head-cta {
    display: none;
  }
}

@media (max-width: 520px) {
  .plate {
    padding: 62px 0;
  }
  .statement {
    margin-bottom: 26px;
  }
  .closing h2 {
    font-size: clamp(42px, 12.5vw, 62px);
  }
  .site-foot {
    padding-top: 56px;
  }
  .foot-grid {
    gap: 34px 24px;
    padding-bottom: 44px;
  }
  .foot-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 26px;
  }
}
