:root {
  --rfid-navy: #2c3947;
  --rfid-deep-navy: #101d2a;
  --rfid-cyan: #008eaa;
  --rfid-cyan-light: #7bc7e0;
  --rfid-breeze: #008eaa;
  --rfid-tropic: #7bc7e0;
  --rfid-juniper: #c6e4ed;
  --rfid-grape: #7186f7;
  --rfid-lemon: #fff689;
  --rfid-tangerine: #f26d3d;
  --rfid-blue-tint: #c0cad3;
  --rfid-grey: #d4d6d8;
  --rfid-soft-grey: #ebeded;
  --rfid-red: #ae153c;
  --rfid-white: #ffffff;
  --rfid-black: #111111;
  --rfid-text: #243241;
  --rfid-muted: #667484;
  --rfid-border: rgba(44, 57, 71, .12);
  --rfid-radius: 8px;
  --rfid-shadow: 0 18px 48px rgba(16, 29, 42, .12);
  --rfid-wrap: min(1180px, calc(100vw - 32px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rfid-text);
  background:
    linear-gradient(90deg, rgba(0, 142, 170, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(44, 57, 71, .035) 1px, transparent 1px),
    linear-gradient(180deg, var(--rfid-white), #f8fcfd 72%, #eef6f8);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: "Noto Sans", "Calibri", "Arial", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.rfid-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.5vw, 1.1rem);
  padding-inline: max(16px, calc((100vw - 1360px) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--rfid-border);
  backdrop-filter: blur(18px);
}

.rfid-brand {
  display: grid;
  gap: .05rem;
  flex: 0 0 auto;
  color: var(--rfid-navy);
  text-decoration: none;
}

.rfid-brand__name {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 900;
  line-height: .95;
}

.rfid-brand__subline {
  color: var(--rfid-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  max-width: 330px;
  line-height: 1.1;
}

.rfid-header-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(.85rem, 1.5vw, 1.35rem);
}

.rfid-header-nav a,
.rfid-menu summary {
  color: var(--rfid-navy);
  font-size: .96rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.rfid-header-nav a[aria-current="page"],
.rfid-menu[open] summary {
  color: var(--rfid-cyan);
}

.rfid-menu {
  position: relative;
}

.rfid-menu summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  cursor: pointer;
  list-style: none;
}

.rfid-menu summary::-webkit-details-marker {
  display: none;
}

.rfid-menu summary::after {
  content: "";
  width: .42rem;
  height: .42rem;
  margin-left: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.rfid-menu[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.rfid-menu-panel {
  position: absolute;
  top: calc(100% + .75rem);
  right: 0;
  z-index: 50;
  width: min(760px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  padding: 1rem;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--rfid-shadow);
}

.rfid-menu-group {
  display: grid;
  align-content: start;
  gap: .45rem;
  padding: .85rem;
  border-radius: var(--rfid-radius);
  background: rgba(235, 237, 237, .58);
}

.rfid-menu-group p {
  margin: 0 0 .2rem;
  color: var(--rfid-cyan);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rfid-menu-group a {
  display: block;
  padding-block: .16rem;
  color: var(--rfid-navy);
  line-height: 1.28;
  white-space: normal;
}

.rfid-header-cta,
.rfid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.1rem;
  border-radius: var(--rfid-radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.rfid-header-cta,
.rfid-button--primary {
  color: var(--rfid-white);
  background: linear-gradient(135deg, var(--rfid-breeze), var(--rfid-navy));
}

.rfid-button--secondary {
  color: var(--rfid-navy);
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
}

.rfid-button--accent {
  color: var(--rfid-deep-navy);
  background: var(--rfid-lemon);
}

.rfid-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 8rem);
  color: var(--rfid-text);
  background:
    linear-gradient(90deg, rgba(0, 142, 170, .075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(44, 57, 71, .045) 1px, transparent 1px),
    linear-gradient(145deg, var(--rfid-white) 0 60%, var(--rfid-juniper) 60% 72%, var(--rfid-lemon) 72% 82%, rgba(242, 109, 61, .18) 82% 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

.rfid-hero__inner {
  width: var(--rfid-wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.weare-lockup {
  width: min(520px, 100%);
  color: var(--rfid-deep-navy);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  text-transform: none;
}

.weare-lockup span {
  display: block;
}

.weare-lockup__we,
.weare-lockup__rfid {
  font-size: clamp(4.5rem, 12vw, 10.5rem);
}

.weare-lockup__are {
  color: var(--rfid-breeze);
  font-size: clamp(5.4rem, 14vw, 12.5rem);
  font-weight: 900;
}

.eas-lockup .weare-lockup__rfid {
  color: var(--rfid-tangerine);
  width: 4.25ch;
  min-width: 4.25ch;
  max-width: 4.25ch;
  min-height: .92em;
  contain: layout;
}

.typewriter-word {
  position: relative;
  display: block;
  width: 4.25ch;
  min-width: 4.25ch;
  max-width: 4.25ch;
  white-space: nowrap;
  overflow: visible;
  contain: layout;
}

.typewriter-word.is-typing::after {
  content: "";
  position: absolute;
  left: calc(100% + .08em);
  top: .1em;
  bottom: .08em;
  width: .055em;
  background: currentColor;
  animation: rfidCaretBlink .9s steps(1) infinite;
}

@keyframes rfidCaretBlink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-word.is-typing::after {
    animation: none;
    opacity: 0;
  }
}

.rfid-kicker,
.rfid-meta {
  margin: 0 0 .75rem;
  color: var(--rfid-cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.rfid-hero h1,
.rfid-hero h2 {
  margin: .35rem 0 1rem;
  color: var(--rfid-navy);
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  line-height: 1.02;
}

.rfid-hero p {
  color: var(--rfid-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-copy {
  max-width: 720px;
  margin-block: 0 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.rfid-section,
.rfid-section--tight,
.rfid-section--compact {
  width: var(--rfid-wrap);
  margin-inline: auto;
}

.rfid-section {
  padding-block: clamp(2.25rem, 6vw, 5rem);
}

.rfid-section--compact {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.visual-intro {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: var(--rfid-white);
  box-shadow: var(--rfid-shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(16, 29, 42, .42), transparent);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-intro h2,
.section-heading h2,
.compare h2,
.pilot h2 {
  margin: 0;
  color: var(--rfid-navy);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
}

.visual-intro p,
.section-heading p,
.pilot p {
  margin: 1rem 0 0;
  color: var(--rfid-muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, .58fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.rfid-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.rfid-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.rfid-card,
.usecase {
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--rfid-text);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.rfid-card h3,
.usecase h3 {
  margin-top: 0;
  color: var(--rfid-navy);
  line-height: 1.13;
}

.rfid-card p,
.usecase p {
  margin-bottom: 0;
  color: var(--rfid-muted);
}

.rfid-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 142, 170, .28);
}

.page-card {
  display: block;
  text-decoration: none;
}

.rfid-grid > .rfid-card:nth-child(4n + 1) {
  border-top: 4px solid var(--rfid-breeze);
}

.rfid-grid > .rfid-card:nth-child(4n + 2) {
  border-top: 4px solid var(--rfid-tropic);
}

.rfid-grid > .rfid-card:nth-child(4n + 3) {
  border-top: 4px solid var(--rfid-grape);
}

.number {
  display: block;
  margin-bottom: 3rem;
  color: var(--rfid-cyan);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.message-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  color: var(--rfid-deep-navy);
  background: var(--rfid-lemon);
  border-radius: var(--rfid-radius);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  box-shadow: var(--rfid-shadow);
}

.definition {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.definition-copy p {
  color: var(--rfid-muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

blockquote {
  margin: 1.4rem 0 0;
  padding: 1.3rem 1.5rem;
  color: var(--rfid-navy);
  background: var(--rfid-white);
  border-left: 4px solid var(--rfid-tangerine);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
  font-weight: 800;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: var(--rfid-border);
}

.benefit-strip span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 1rem;
  color: var(--rfid-navy);
  background: var(--rfid-white);
  font-weight: 900;
}

.benefit-strip span:nth-child(2) {
  background: var(--rfid-juniper);
}

.benefit-strip span:nth-child(3) {
  background: var(--rfid-lemon);
}

.benefit-strip span:nth-child(4) {
  background: var(--rfid-tropic);
}

.note {
  max-width: 880px;
  margin: 1.25rem 0 0;
  color: var(--rfid-muted);
}

.usecase-list {
  display: grid;
  gap: 1rem;
}

.usecase {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  box-shadow: none;
}

.usecase:nth-child(4n + 1) {
  border-left: 4px solid var(--rfid-breeze);
}

.usecase:nth-child(4n + 2) {
  border-left: 4px solid var(--rfid-tropic);
}

.usecase:nth-child(4n + 3) {
  border-left: 4px solid var(--rfid-grape);
}

.usecase:nth-child(4n + 4) {
  border-left: 4px solid var(--rfid-tangerine);
}

.usecase-label {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--rfid-white);
  background: var(--rfid-navy);
  border-radius: var(--rfid-radius);
  font-weight: 900;
}

.compare {
  padding-block-start: clamp(1rem, 3vw, 2rem);
}

.compare h2 {
  max-width: 800px;
  margin-bottom: 1.6rem;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: var(--rfid-white);
  box-shadow: var(--rfid-shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1.12fr;
}

.comparison-row > div {
  min-width: 0;
  padding: 1rem;
  border-top: 1px solid var(--rfid-border);
  color: var(--rfid-muted);
}

.comparison-row > div + div {
  border-left: 1px solid var(--rfid-border);
}

.comparison-head > div {
  border-top: 0;
  color: var(--rfid-navy);
  background: var(--rfid-juniper);
  font-weight: 900;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--rfid-border);
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
}

.flow div {
  min-height: 210px;
  padding: 1.35rem;
  background: var(--rfid-white);
}

.flow div:nth-child(2) {
  background: var(--rfid-juniper);
}

.flow div:nth-child(3) {
  background: var(--rfid-lemon);
}

.flow div:nth-child(4) {
  background: var(--rfid-tropic);
}

.flow span {
  display: block;
  margin-bottom: 3rem;
  color: var(--rfid-cyan);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.flow strong {
  display: block;
  color: var(--rfid-navy);
  font-size: 1.45rem;
  line-height: 1;
}

.flow p {
  margin: .75rem 0 0;
  color: var(--rfid-muted);
}

.rfid-cta {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--rfid-white);
  background:
    linear-gradient(90deg, rgba(123, 199, 224, .24), transparent 44%),
    linear-gradient(135deg, var(--rfid-navy), var(--rfid-deep-navy));
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.link-panel {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
  border-top: 4px solid var(--rfid-breeze);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.link-panel.external {
  border-top-color: var(--rfid-tangerine);
}

.link-panel h3 {
  margin: 0 0 1rem;
  color: var(--rfid-navy);
}

.link-panel a {
  display: block;
  padding: .75rem 0;
  color: var(--rfid-navy);
  border-top: 1px solid var(--rfid-border);
  font-weight: 800;
  text-decoration: none;
}

.link-panel a:hover {
  color: var(--rfid-cyan);
}

.subhero {
  width: var(--rfid-wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.subhero-copy h1 {
  max-width: 860px;
  margin: .35rem 0 1rem;
  color: var(--rfid-navy);
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 1.02;
}

.subhero-copy p {
  max-width: 760px;
  color: var(--rfid-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.subhero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: var(--rfid-white);
  box-shadow: var(--rfid-shadow);
}

.subhero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body section + section {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.article-body h2 {
  max-width: 880px;
  margin: 0 0 1rem;
  color: var(--rfid-navy);
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.article-body p {
  max-width: 860px;
  color: var(--rfid-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.package-content ul {
  max-width: 860px;
  display: grid;
  gap: .55rem;
  margin: 1rem 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--rfid-muted);
}

.package-content li::marker {
  color: var(--rfid-cyan);
}

.package-content h3 {
  max-width: 820px;
  margin: 1.55rem 0 .7rem;
  color: var(--rfid-navy);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.package-content h4 {
  max-width: 820px;
  margin: 1.25rem 0 .5rem;
  color: var(--rfid-navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.table-wrap {
  max-width: 980px;
  overflow-x: auto;
  margin: 1.2rem 0 1.8rem;
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  background: var(--rfid-white);
  box-shadow: var(--rfid-shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: .85rem 1rem;
  border-top: 1px solid var(--rfid-border);
  border-left: 1px solid var(--rfid-border);
  text-align: left;
  vertical-align: top;
}

th:first-child,
td:first-child {
  border-left: 0;
}

th {
  color: var(--rfid-navy);
  background: var(--rfid-juniper);
  font-weight: 900;
}

tr:first-child th {
  border-top: 0;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: .35rem 0;
  padding: .7rem 1rem;
  color: var(--rfid-white);
  background: linear-gradient(135deg, var(--rfid-breeze), var(--rfid-navy));
  border-radius: var(--rfid-radius);
  font-weight: 900;
  text-decoration: none;
}

.internal-link-note {
  display: inline-flex;
  color: var(--rfid-cyan);
  font-weight: 900;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.25rem;
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
  border-top: 4px solid var(--rfid-breeze);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.sidebar-card.soft {
  border-top-color: var(--rfid-tangerine);
  background: rgba(255, 255, 255, .82);
}

.sidebar-card ul {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--rfid-muted);
}

.sidebar-card a {
  display: block;
  padding: .7rem 0;
  color: var(--rfid-navy);
  border-top: 1px solid var(--rfid-border);
  font-weight: 800;
  text-decoration: none;
}

.legal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
  border-left: 4px solid var(--rfid-grape);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.legal-strip h2 {
  margin: 0;
  color: var(--rfid-navy);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.legal-strip p:not(.rfid-kicker) {
  margin: .75rem 0 0;
  color: var(--rfid-muted);
}

.legal-hero {
  grid-template-columns: 1fr;
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
  box-shadow: var(--rfid-shadow);
}

.legal-block + .legal-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rfid-border);
}

.legal-block h2 {
  margin: 0 0 .75rem;
  color: var(--rfid-navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.legal-block p {
  margin: .25rem 0;
  color: var(--rfid-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.legal-aside {
  position: sticky;
  top: 92px;
}

.faq h2 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: var(--rfid-navy);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
}

details {
  margin-top: .75rem;
  padding: 1rem 1.25rem;
  background: var(--rfid-white);
  border: 1px solid var(--rfid-border);
  border-radius: var(--rfid-radius);
}

summary {
  color: var(--rfid-navy);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: .75rem 0 0;
  color: var(--rfid-muted);
}

.pilot {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.pilot .rfid-kicker {
  color: var(--rfid-cyan-light);
}

.pilot h2 {
  color: var(--rfid-white);
}

.pilot p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
}

.rfid-site-footer {
  color: rgba(255, 255, 255, .82);
  background: var(--rfid-deep-navy);
}

.rfid-footer-inner {
  width: var(--rfid-wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, .7fr) minmax(210px, .7fr) minmax(260px, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2rem, 4vw, 3.25rem);
}

.rfid-site-footer a {
  color: rgba(255, 255, 255, .86);
}

.rfid-footer-title {
  color: var(--rfid-white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.rfid-footer-legal-title {
  margin: 0 0 .55rem;
  color: var(--rfid-cyan-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rfid-footer-newsletter {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--rfid-radius);
  background: rgba(255, 255, 255, .06);
}

.rfid-footer-newsletter h2 {
  margin: 0;
  color: var(--rfid-white);
  font-size: 1.25rem;
  line-height: 1.12;
}

.rfid-footer-newsletter p:not(.rfid-footer-legal-title) {
  color: rgba(255, 255, 255, .76);
  line-height: 1.5;
}

.newsletter-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-cta .rfid-kicker {
  color: var(--rfid-cyan-light);
}

.newsletter-cta h2 {
  color: var(--rfid-white);
}

.newsletter-cta p {
  max-width: 780px;
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 920px) {
  .rfid-site-header {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .rfid-header-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: visible;
  }

  .rfid-header-nav > a {
    display: none;
  }

  .rfid-menu {
    width: 100%;
  }

  .rfid-menu summary {
    width: 100%;
    justify-content: center;
    border: 1px solid var(--rfid-border);
    border-radius: var(--rfid-radius);
    background: var(--rfid-white);
  }

  .rfid-menu-panel {
    position: static;
    width: 100%;
    margin-top: .65rem;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .rfid-hero__inner,
  .visual-intro,
  .section-heading,
  .pilot,
  .newsletter-cta,
  .rfid-footer-inner {
    grid-template-columns: 1fr;
  }

  .subhero,
  .article-layout,
  .legal-layout,
  .legal-strip {
    grid-template-columns: 1fr;
  }

  .article-aside,
  .legal-aside {
    position: static;
  }

  .rfid-grid--3,
  .rfid-grid--2,
  .definition,
  .benefit-strip,
  .link-columns,
  .flow {
    grid-template-columns: 1fr;
  }

  .number,
  .flow span {
    margin-bottom: 1.75rem;
  }

  .flow div {
    min-height: auto;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > div + div {
    border-left: 0;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row > div:first-child {
    color: var(--rfid-navy);
    background: var(--rfid-juniper);
    font-weight: 900;
  }
}

@media (max-width: 560px) {
  .rfid-site-header {
    min-height: 64px;
  }

  .rfid-header-cta {
    display: none;
  }

  .rfid-brand__subline {
    max-width: 210px;
  }

  .rfid-hero {
    padding-block: 3rem;
  }

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

  .usecase-label {
    width: 60px;
    height: 60px;
  }

  .hero-actions,
  .hero-actions .rfid-button,
  .pilot .rfid-button {
    width: 100%;
  }
}
