:root {
  --bg: #090e16;
  --bg-soft: #0e1520;
  --panel: #111a27;
  --panel-2: #151f2e;
  --text: #f4f7fb;
  --muted: #8e9bad;
  --line: rgba(145, 165, 193, .16);
  --blue: #168cff;
  --blue-light: #51adff;
  --blue-deep: #086bc9;
  --header: rgba(9, 14, 22, .8);
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --radius: 22px;
  --container: 1240px;
}

html[data-theme="light"] {
  --bg: #f5f8fc;
  --bg-soft: #edf3f9;
  --panel: #ffffff;
  --panel-2: #f1f6fb;
  --text: #101a28;
  --muted: #5e6c7f;
  --line: rgba(31, 57, 88, .13);
  --blue: #0066cc;
  --blue-light: #005eb8;
  --blue-deep: #004f9f;
  --header: rgba(245, 248, 252, .86);
  --shadow: 0 24px 80px rgba(32, 57, 86, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.language-restoring body {
  visibility: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color .3s ease, color .3s ease;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 125px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: var(--header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  height: 88px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-block;
}

.brand-lockup {
  position: relative;
  display: block;
  width: 150px;
  aspect-ratio: 863 / 315;
}

.brand-lockup-blue,
.brand-lockup-text {
  position: absolute;
  inset: 0;
  display: block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.brand-lockup-blue {
  background: var(--blue);
  -webkit-mask-image: url("/assets/brand-logo-canva-blue.png");
  mask-image: url("/assets/brand-logo-canva-blue.png");
}

.brand-lockup-text {
  background: var(--text);
  -webkit-mask-image: url("/assets/brand-logo-canva-text.png");
  mask-image: url("/assets/brand-logo-canva-text.png");
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 40px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
}

.language-switch button {
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--blue);
  color: #fff;
}

.icon-button {
  display: grid;
  width: 37px;
  height: 37px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
  transition: transform .25s ease, opacity .25s ease;
}

.moon-icon {
  opacity: 0;
  transform: scale(.7) rotate(-25deg);
}

html[data-theme="light"] .sun-icon {
  opacity: 0;
  transform: scale(.7) rotate(25deg);
}

html[data-theme="light"] .moon-icon {
  opacity: 1;
  transform: none;
}

.header-phone {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

.header-phone:hover {
  border-color: var(--blue);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  padding-top: 170px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  opacity: .18;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  top: 100px;
  left: 6%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(13, 113, 218, .14);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .96fr;
  gap: 88px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.06;
}

h1 {
  max-width: 670px;
  font-size: clamp(58px, 6.2vw, 88px);
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button.primary {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(22, 140, 255, .23);
  color: #fff;
}

.button.primary:hover {
  background: var(--blue-deep);
}

.button.secondary {
  border-color: var(--line);
  background: var(--panel);
}

.button.secondary:hover {
  border-color: var(--blue);
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 58px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.hero-meta strong {
  font-size: 16px;
}

.hero-meta span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.access-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(21, 31, 46, .97), rgba(8, 13, 22, .98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
}

html[data-theme="light"] .access-visual {
  background: linear-gradient(145deg, #162234, #09111d);
  color: #fff;
}

.visual-header {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.visual-brand,
.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-brand i {
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 2px;
}

.live-status {
  color: #74ffbe;
}

.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: pulse 2s infinite;
}

.door-stage {
  position: relative;
  display: grid;
  height: 378px;
  place-items: end center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 70%, rgba(22, 140, 255, .14), transparent 48%);
}

.door-stage::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background-image: linear-gradient(rgba(49, 123, 190, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 123, 190, .09) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  transform: perspective(200px) rotateX(55deg) scale(1.4);
  transform-origin: bottom;
}

.door-frame {
  position: relative;
  z-index: 2;
  display: flex;
  width: 52%;
  height: 305px;
  padding: 10px 10px 0;
  border: 4px solid #40516a;
  border-bottom: 0;
  background: #141f2d;
  box-shadow: 0 0 60px rgba(22, 140, 255, .12);
}

.door-frame::after {
  position: absolute;
  right: -27%;
  bottom: 0;
  left: -27%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4f647f, transparent);
  content: "";
}

.door-panel {
  position: relative;
  width: 50%;
  height: 100%;
  border: 1px solid #34445a;
  background: linear-gradient(135deg, rgba(73, 103, 137, .22), rgba(15, 25, 38, .85));
}

.door-panel span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(108, 140, 176, .22);
}

.door-panel.left span {
  right: 26%;
}

.door-panel.right span {
  left: 26%;
}

.access-reader {
  position: absolute;
  z-index: 4;
  top: 47%;
  right: -60px;
  display: grid;
  width: 42px;
  height: 62px;
  place-items: center;
  border: 1px solid #425774;
  border-radius: 5px;
  background: #111b29;
  box-shadow: 0 0 20px rgba(22, 140, 255, .15);
}

.access-reader svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--blue-light);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.reader-wave {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  animation: reader 2.3s ease-out infinite;
}

.access-approved {
  position: absolute;
  z-index: 5;
  top: 38%;
  left: -74px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 178px;
  padding: 12px;
  border: 1px solid rgba(80, 177, 255, .35);
  border-radius: 9px;
  background: rgba(12, 26, 42, .94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
  color: #fff;
}

.access-approved svg {
  width: 29px;
  height: 29px;
  padding: 7px;
  border-radius: 50%;
  background: var(--blue);
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.access-approved div {
  display: flex;
  flex-direction: column;
}

.access-approved strong {
  font-size: 8px;
  letter-spacing: .08em;
}

.access-approved span {
  color: #8ba0b8;
  font-size: 8px;
}

.signal {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(22, 140, 255, .16);
  border-radius: 50%;
  animation: signal 3.5s linear infinite;
}

.signal-two {
  animation-delay: -1.7s;
}

.visual-stats {
  display: grid;
  height: 80px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
}

.visual-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 21px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.visual-stats div:last-child {
  border-right: 0;
}

.visual-stats span {
  color: #718299;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.visual-stats strong {
  margin-top: 2px;
  font-size: 12px;
}

.visual-stats div:first-child strong {
  color: #74ffbe;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.trust-strip .container {
  display: flex;
  min-height: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-strip p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 45px;
}

.trust-items > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.trust-items i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

h2 {
  font-size: clamp(42px, 4.7vw, 66px);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px 29px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
  border-color: rgba(22, 140, 255, .42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.solution-card.featured {
  background: linear-gradient(145deg, rgba(22, 140, 255, .13), var(--panel) 65%);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.card-icon {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-2);
}

.door-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding: 12px 14px 10px;
}

.door-icon span {
  width: 14px;
  height: 35px;
  border: 1px solid var(--blue);
  background: rgba(22, 140, 255, .07);
}

.door-icon span:last-child {
  transform: translateX(5px);
}

.card-icon-visual span {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 34px;
  height: 25px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  transform: rotate(-7deg);
}

.card-icon-visual span::after {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.card-icon-visual i {
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 21px;
  height: 15px;
  border: 1px solid var(--blue-light);
  border-radius: 3px;
  background: var(--panel-2);
  transform: rotate(8deg);
}

.turnstile-icon span {
  position: absolute;
  top: 12px;
  left: 29px;
  width: 3px;
  height: 38px;
  background: var(--blue);
}

.turnstile-icon i,
.turnstile-icon b {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 23px;
  height: 2px;
  background: var(--blue-light);
  transform-origin: left;
}

.turnstile-icon i {
  transform: rotate(25deg);
}

.turnstile-icon b {
  transform: rotate(145deg);
}

.security-icon span {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 27px;
  height: 31px;
  border: 1px solid var(--blue);
  border-radius: 15px 15px 11px 11px;
  clip-path: polygon(50% 0, 100% 18%, 92% 75%, 50% 100%, 8% 75%, 0 18%);
  background: rgba(22, 140, 255, .08);
}

.security-icon i {
  position: absolute;
  top: 26px;
  left: 28px;
  width: 7px;
  height: 10px;
  border: 1px solid var(--blue-light);
  border-radius: 5px 5px 2px 2px;
}

.solution-card h3 {
  margin: 0 0 15px;
  font-size: 18px;
  letter-spacing: -.025em;
  line-height: 1.4;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.solution-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.solution-card li::before {
  margin-right: 8px;
  color: var(--blue);
  content: "—";
}

.solution-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process {
  background: var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.process-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}

.process-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin: 30px 0 35px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  gap: 55px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 155px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.process-list h3 {
  margin: 2px 0 10px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-panel {
  display: grid;
  min-height: 490px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  grid-template-columns: 1.25fr .75fr;
}

.about-copy {
  padding: 70px 76px;
}

.about-copy h2 {
  max-width: 710px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.about-points > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.about-points i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 140, 255, .12);
  color: var(--blue);
  font-size: 9px;
  font-style: normal;
}

.about-metric {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: radial-gradient(circle, rgba(22, 140, 255, .14), transparent 58%), var(--panel-2);
}

.about-metric::before,
.about-metric::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.about-metric::after {
  width: 420px;
  height: 420px;
}

.metric-ring {
  position: relative;
  z-index: 1;
  display: flex;
  width: 155px;
  height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--panel);
  box-shadow: 0 0 50px rgba(22, 140, 255, .14);
}

.metric-ring span {
  color: var(--blue);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.metric-ring small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.about-metric p {
  position: relative;
  z-index: 1;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  min-height: 385px;
  align-items: center;
  padding: 65px 75px;
  border-radius: 28px;
  background: linear-gradient(115deg, #086ccf, #168cff 52%, #39a5ff);
  box-shadow: 0 25px 70px rgba(17, 119, 219, .24);
  color: #fff;
  grid-template-columns: 1.2fr .8fr;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .75);
}

.contact-panel h2 em {
  color: #fff;
  opacity: .66;
}

.contact-actions {
  padding-left: 45px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.contact-actions p {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.button.white {
  min-width: 260px;
  justify-content: space-between;
  background: #fff;
  color: #096dcc;
}

.contact-mail {
  display: block;
  width: max-content;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 25px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 11px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s ease;
}

.reveal-delay-1 {
  transition-delay: 55ms;
}

.reveal-delay-2 {
  transition-delay: 110ms;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  50% { opacity: .35; }
}

@keyframes reader {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(6); }
}

@keyframes signal {
  from { opacity: 0; transform: scale(.35); }
  35% { opacity: .7; }
  to { opacity: 0; transform: scale(1.35); }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  }

  .mobile-nav.open {
    max-height: calc(100vh - 88px);
    padding-block: 20px 30px;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 16px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding-block: 170px 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .access-visual {
    width: min(100%, 680px);
    justify-self: center;
  }

  .trust-strip .container {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 28px;
  }

  .trust-items {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px 35px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    gap: 60px;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-metric {
    min-height: 380px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-panel {
    gap: 45px;
    padding: 60px;
    grid-template-columns: 1fr;
  }

  .contact-actions {
    padding-top: 35px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 85px 0;
  }

  .header-inner {
    height: 74px;
  }

  .brand-lockup {
    width: 110px;
  }

  .header-actions {
    gap: 8px;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    padding-block: 135px 75px;
  }

  .hero-grid {
    gap: 55px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-lead {
    margin: 24px 0 28px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-meta {
    justify-content: space-between;
    gap: 10px;
    margin-top: 42px;
  }

  .hero-meta div {
    padding-left: 10px;
  }

  .hero-meta span {
    max-width: 90px;
    font-size: 7px;
  }

  .access-visual {
    min-height: 425px;
    border-radius: 18px;
  }

  .door-stage {
    height: 290px;
  }

  .door-frame {
    width: 53%;
    height: 238px;
  }

  .access-approved {
    left: -72px;
    width: 157px;
  }

  .access-reader {
    right: -48px;
  }

  .visual-stats {
    height: 72px;
  }

  .visual-stats div {
    padding: 0 12px;
  }

  .visual-stats span {
    font-size: 6px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .section-heading > p {
    font-size: 13px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 350px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .process-list li {
    min-height: 145px;
    grid-template-columns: 70px 1fr;
  }

  .about-copy {
    padding: 48px 28px;
  }

  .about-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-metric {
    min-height: 330px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-panel {
    min-height: 540px;
    padding: 45px 28px;
    border-radius: 22px;
  }

  .button.white {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
