:root {
  --ink: #c4c9ce;
  --muted: #969696;
  --line: #777777;
  --teal: #236677;
  --teal-hover: #2e8195;
  --teal-link: #37899e;
  --teal-bright: #4fcfee;
  --teal-dark: #1e5968;
  --mist: #161616;
  --paper: #000000;
  --charcoal: #000000;
  --heading: #e2e2e2;
  --field: #ababab;
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@font-face {
  font-family: "Fjalla One";
  src: url("assets/fonts/fjalla-one-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Fjalla One";
  src: url("assets/fonts/fjalla-one-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Kufam";
  src: url("assets/fonts/kufam-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kufam";
  src: url("assets/fonts/kufam-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: var(--teal-link);
}

a:hover {
  color: var(--teal-bright);
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  padding: 24px clamp(20px, 5vw, 64px);
  background: rgba(22, 22, 22, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: clamp(170px, 24vw, 330px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
  font-size: 0.78rem;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a.is-active {
  border-color: rgba(79, 207, 238, 0.56);
  background: rgba(35, 102, 119, 0.24);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 18, 22, 0.4);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(79, 207, 238, 0.58);
  background: rgba(35, 102, 119, 0.32);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 76vh;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 112px clamp(22px, 6vw, 80px) 62px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 63% 48%, rgba(35, 102, 119, 0.34), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12) 31%, rgba(2, 10, 18, 0.86) 100%);
  pointer-events: none;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.07);
}

.hero-slide:nth-child(1) {
  background-image:
    linear-gradient(90deg, rgba(22, 22, 22, 0.74), rgba(22, 22, 22, 0.46) 42%, rgba(0, 0, 0, 0.18)),
    url("assets/hero/hero-eye-1.jpg");
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 68vw);
  max-width: 1040px;
  text-align: right;
  padding-right: clamp(24px, 2.3vw, 42px);
  margin-right: clamp(145px, 20vw, 430px);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible,
.hero-dots button.is-active {
  background: #fff;
  box-shadow: 0 0 16px rgba(79, 207, 238, 0.55);
  transform: scale(1.18);
}

.hero-video-section {
  min-height: 78vh;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-motion-fields {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.motion-line,
.motion-node {
  position: absolute;
  display: block;
  opacity: 0.58;
  --parallax-y: 0px;
  will-change: transform;
}

.motion-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 207, 238, 0.64), transparent);
  transform-origin: center;
}

.motion-line-a {
  top: 34%;
  left: 8%;
  width: 42vw;
  transform: translate3d(0, var(--parallax-y), 0) rotate(-8deg);
}

.motion-line-b {
  right: 9%;
  bottom: 27%;
  width: 36vw;
  transform: translate3d(0, var(--parallax-y), 0) rotate(11deg);
}

.motion-node {
  width: clamp(58px, 7vw, 118px);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 207, 238, 0.38);
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 207, 238, 0.2), transparent 56%),
    rgba(3, 18, 24, 0.18);
  box-shadow: 0 0 36px rgba(79, 207, 238, 0.16);
  clip-path: polygon(50% 0, 91% 24%, 91% 76%, 50% 100%, 9% 76%, 9% 24%);
  transform: translate3d(0, var(--parallax-y), 0);
}

.motion-node-a {
  left: 22%;
  top: 40%;
}

.motion-node-b {
  right: 28%;
  top: 22%;
  width: clamp(42px, 5vw, 84px);
}

.motion-node-c {
  right: 12%;
  bottom: 16%;
  width: clamp(70px, 8vw, 132px);
}

.hero-content-cinematic {
  margin-right: clamp(150px, 21vw, 450px);
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-concept-section::before {
  background:
    radial-gradient(circle at 39% 47%, rgba(0, 202, 214, 0.14), transparent 34%),
    radial-gradient(circle at 82% 55%, rgba(35, 102, 119, 0.42), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 43%, rgba(2, 10, 18, 0.88) 100%);
}

.hero-concept-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 24%, rgba(0, 0, 0, 0.36)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 74px);
  mix-blend-mode: screen;
  opacity: 0.28;
  pointer-events: none;
}

.hero-content-concept {
  width: min(900px, 64vw);
  margin-right: clamp(170px, 23vw, 470px);
  padding: clamp(28px, 3vw, 46px) clamp(24px, 2.3vw, 42px) clamp(30px, 3vw, 50px) 0;
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-motion-abstract .motion-line {
  opacity: 0.44;
  filter: drop-shadow(0 0 18px rgba(79, 207, 238, 0.25));
}

.hero-motion-abstract .motion-node {
  opacity: 0.38;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 207, 238, 0.16), transparent 56%),
    rgba(3, 18, 24, 0.08);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero .eyebrow {
  color: #d6dce0;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px rgba(79, 207, 238, 0.26);
}

h1,
h2,
h3,
h4 {
  font-family: "Fjalla One", "Arial Narrow", "Aptos Condensed", Impact, sans-serif;
  line-height: 1.16;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(4.25rem, 9.4vw, 11.75rem);
  text-transform: uppercase;
}

.subtitle {
  margin: 12px 0 30px;
  font-size: clamp(1.25rem, 2.1vw, 2.05rem);
  color: #fff;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  box-shadow: 0 12px 26px rgba(35, 102, 119, 0.24);
  transform: translateY(0);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.button.secondary {
  background: transparent;
  box-shadow: inset 0 0 0 2px #fff;
}

.button:hover {
  color: #fff;
  background: var(--teal-hover);
  box-shadow: 0 16px 34px rgba(79, 207, 238, 0.18);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.dark {
  border-color: var(--teal);
  background: var(--teal);
}

.section {
  position: relative;
  padding: clamp(56px, 8vw, 104px) clamp(22px, 6vw, 80px);
  background: linear-gradient(180deg, #000 0%, #030607 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section.alt,
.admin-mockups,
.brochure-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(79, 207, 238, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(47, 166, 195, 0.66), rgba(10, 57, 69, 0.98) 42%, #101819 100%);
}

#tickwall {
  background:
    radial-gradient(circle at 88% 12%, rgba(35, 102, 119, 0.2), transparent 28%),
    linear-gradient(180deg, #000 0%, #071114 100%);
}

#contact {
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 102, 119, 0.16), transparent 30%),
    linear-gradient(180deg, #030607 0%, #081315 100%);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.rule {
  width: 76px;
  height: 1px;
  background: var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--heading);
}

.lead {
  font-size: 1.18rem;
  color: var(--heading);
  font-weight: 800;
}

.copy p {
  margin: 0 0 17px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--teal-bright);
  border-bottom: 3px solid var(--teal-bright);
  transform: rotate(-45deg);
}

.info-panel {
  background: #161616;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-panel:hover,
.platform-logo:hover {
  border-color: rgba(79, 207, 238, 0.48);
  box-shadow: 0 18px 42px rgba(35, 102, 119, 0.22);
  transform: translateY(-3px);
}

.info-panel h3 {
  font-size: 1.55rem;
  color: var(--heading);
  margin-bottom: 14px;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-panel .button {
  margin-top: 8px;
}

.contact-prompt {
  color: var(--heading);
  font-weight: 800;
}

.operate-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 207, 238, 0.22), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(35, 102, 119, 0.22), transparent 34%),
    linear-gradient(180deg, #030607 0%, #0a171b 52%, #000 100%);
}

.operate-heading {
  max-width: 780px;
}

.operate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 44px);
}

.operate-card {
  position: relative;
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(79, 207, 238, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.operate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 2px solid rgba(79, 207, 238, 0.58);
  pointer-events: none;
}

.operate-kicker,
.node-label {
  margin: 0 0 12px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operate-card h3,
.flow-node h3 {
  color: var(--heading);
}

.operate-card p:last-child,
.flow-node p:last-child {
  margin: 14px 0 0;
}

.operate-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.25fr) minmax(0, 1.05fr) minmax(130px, 0.25fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(79, 207, 238, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(79, 207, 238, 0.08), transparent 22%, transparent 78%, rgba(79, 207, 238, 0.08)),
    rgba(0, 0, 0, 0.28);
}

.operate-flow::before {
  content: "";
  position: absolute;
  inset: 50% 9% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 207, 238, 0.85), transparent);
  opacity: 0.65;
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 282px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 12, 14, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.flow-node:hover,
.operate-card:hover,
.operate-steps span:hover {
  border-color: rgba(79, 207, 238, 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 207, 238, 0.16), transparent 44%),
    rgba(8, 20, 23, 0.92);
  box-shadow:
    0 0 0 1px rgba(79, 207, 238, 0.1),
    0 24px 58px rgba(35, 102, 119, 0.28),
    0 0 42px rgba(79, 207, 238, 0.16);
  transform: translateY(-3px);
}

.flow-node-cloud {
  border-color: rgba(79, 207, 238, 0.48);
  background:
    radial-gradient(circle at 50% 22%, rgba(79, 207, 238, 0.25), transparent 36%),
    rgba(6, 25, 30, 0.92);
}

.node-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border: 1px solid rgba(79, 207, 238, 0.54);
  border-radius: 50%;
  color: var(--teal-bright);
  background: rgba(79, 207, 238, 0.08);
  box-shadow: 0 0 38px rgba(79, 207, 238, 0.22);
}

.node-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 10px rgba(79, 207, 238, 0.32));
}

.node-icon-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.node-icon-pair .node-icon {
  margin-bottom: 0;
}

.tickwall-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 0 18px rgba(79, 207, 238, 0.36));
}

.tickwall-mark img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.flow-connector {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 282px;
  overflow: visible;
}

.connector-line {
  position: absolute;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(79, 207, 238, 0.62));
}

.connector-line-horizontal {
  display: none;
  left: 8px;
  right: 8px;
  top: 50%;
  width: calc(100% - 16px);
  height: 28px;
  transform: translateY(-50%);
}

.connector-line-vertical {
  display: none;
}

.connector-line-horizontal .connector-head {
  display: none;
}

.connector-stem,
.connector-head {
  fill: none;
  stroke: var(--teal-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.connector-stem {
  opacity: 0.82;
}

.flow-connector span {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(79, 207, 238, 0.38);
  background: #071114;
  color: var(--heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(79, 207, 238, 0.18);
}

.connector-arrow-desktop {
  color: var(--teal-bright);
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(79, 207, 238, 0.9);
}

.operate-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.operate-steps span {
  padding: 12px 14px;
  border: 1px solid rgba(79, 207, 238, 0.18);
  color: var(--heading);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.mockups {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(79, 207, 238, 0.24), transparent 34%),
    linear-gradient(145deg, #020405, #0f2b32 48%, #050809);
}

.mockup-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.device-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 52vw, 660px);
  padding-bottom: clamp(28px, 4vw, 54px);
  perspective: 1200px;
}

.device-showcase::before {
  content: "";
  position: absolute;
  inset: 18% 4% 12%;
  background: linear-gradient(90deg, rgba(35, 102, 119, 0), rgba(79, 207, 238, 0.18), rgba(35, 102, 119, 0));
  filter: blur(28px);
  opacity: 0.85;
  transform: skewY(-5deg);
}

.device-mockup {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: filter 0.45s ease, transform 0.45s ease;
}

.mockup-reflection-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  transition: filter 0.45s ease, transform 0.45s ease;
}

.mockup-reflection-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -12px;
  width: 70%;
  height: 14%;
  background:
    radial-gradient(ellipse at center, rgba(206, 246, 255, 0.34), rgba(79, 207, 238, 0.16) 42%, transparent 72%);
  filter: blur(11px);
  opacity: 0.9;
  pointer-events: none;
  transform: translateX(-50%) scaleY(0.42);
}

.mockup-reflection-wrap-primary {
  width: min(900px, 100%);
  transform: rotateY(-2deg) rotateX(0.5deg) translateY(4px);
}

.mockup-reflection-wrap-primary::after {
  bottom: -18px;
  width: 78%;
  height: 16%;
}

.device-mockup-primary {
  width: 100%;
}

.device-showcase:hover .mockup-reflection-wrap-primary {
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.device-showcase:hover .device-mockup-primary {
  filter: drop-shadow(0 34px 58px rgba(35, 102, 119, 0.35));
}

.admin-mockups {
  overflow: hidden;
}

.admin-title {
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.admin-title span {
  display: block;
  white-space: nowrap;
}

.admin-mockup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.admin-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  padding-bottom: clamp(18px, 3vw, 38px);
  perspective: 1200px;
}

.admin-showcase::before {
  content: "";
  position: absolute;
  inset: 16% 7% 14%;
  background: linear-gradient(90deg, rgba(35, 102, 119, 0), rgba(79, 207, 238, 0.2), rgba(35, 102, 119, 0));
  filter: blur(34px);
  opacity: 0.8;
  transform: skewY(4deg);
}

.device-mockup-wide {
  width: 100%;
  justify-self: center;
}

.admin-device-wrap {
  width: min(500px, 100%);
  justify-self: center;
}

.device-mockup-laptop-wrap {
  transform: rotateY(1.5deg) rotateX(0.5deg);
}

.device-mockup-desktop-wrap {
  width: min(560px, 112%);
  transform: rotateY(-1.5deg) rotateX(0.5deg);
}

.admin-showcase:hover .device-mockup-laptop-wrap,
.admin-showcase:hover .device-mockup-desktop-wrap {
  transform: rotateY(0deg) rotateX(0deg) translateX(0) translateY(-8px);
}

.admin-showcase:hover .device-mockup {
  filter: drop-shadow(0 34px 58px rgba(35, 102, 119, 0.35));
}

.platforms-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 207, 238, 0.24), transparent 34%),
    linear-gradient(180deg, #071518 0%, #0c2830 52%, #061013 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.platforms-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.platform-heading {
  text-align: center;
  justify-items: center;
}

.platform-groups {
  display: grid;
  gap: clamp(26px, 5vw, 54px);
}

.platform-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.25fr) minmax(0, 0.75fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.platform-group-copy h3 {
  color: var(--heading);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  text-transform: uppercase;
}

.platform-group-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.platform-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px;
}

.agent-platforms {
  display: grid;
  gap: 18px;
}

.store-badge-grid {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
}

.agent-logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.badge-logo {
  min-height: 72px;
  padding: 12px;
}

.store-badge {
  max-width: 168px;
  width: 100%;
  max-height: 48px;
}

.infrastructure-logos {
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}

.platform-logo {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  display: grid;
  gap: 9px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(167, 210, 220, 0.11));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.platform-logo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 50%;
  width: min(158px, 86%);
  height: 72px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14) 48%, transparent 78%);
  filter: blur(15px);
  opacity: 0.58;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.platform-logo:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(167, 210, 220, 0.17));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 20px 42px rgba(35, 102, 119, 0.22);
}

.platform-logo:hover::before {
  opacity: 0.72;
  filter: blur(14px);
}

.platform-logo.wide {
  min-height: 88px;
}

.platform-logo-mark {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.logo-wide-mark {
  max-width: 128px;
}

.logo-boost-mark {
  max-width: min(140px, 100%);
  max-height: 62px;
}

.logo-tall-mark {
  max-height: 58px;
}

.platform-logo span {
  position: relative;
  z-index: 1;
  color: rgba(244, 250, 251, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.platform-logo:not(.wide) .platform-logo-mark {
  max-height: 44px;
}

.platform-more {
  min-height: 88px;
}

.platform-more-dots {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.platform-more-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.38), 0 0 26px rgba(79, 207, 238, 0.22);
}

.shield-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 207, 238, 0.16), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(29, 122, 141, 0.28), transparent 32%),
    linear-gradient(135deg, #8fc1ca 0%, #63a6b2 46%, #327485 100%);
  color: #081927;
}

.shield-section::before {
  display: none;
}

.shield-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(470px, 1.12fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.shield-copy .section-label,
.shield-copy h2,
.shield-copy .lead,
.shield-copy p,
.shield-capabilities h3,
.shield-capabilities li {
  color: #081927;
}

.shield-copy .lead {
  max-width: 660px;
  font-weight: 900;
}

.shield-copy p {
  max-width: 720px;
}

.shield-brand {
  position: absolute;
  top: 0;
  right: 2%;
  z-index: 5;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 0;
}

.shield-brand img {
  width: clamp(64px, 7vw, 98px);
  height: clamp(64px, 7vw, 98px);
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(16, 120, 132, 0.18));
}

.shield-brand-text {
  color: #0c1930;
  font-family: "Kufam", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(0.12em);
}

.shield-brand-text span:first-child {
  font-size: clamp(1.7rem, 3vw, 3.25rem);
}

.shield-brand-text span:last-child {
  margin-left: 0.34em;
  font-size: clamp(1.35rem, 2.25vw, 2.45rem);
}

.shield-visual {
  position: relative;
  min-height: clamp(610px, 56vw, 820px);
  isolation: isolate;
}

.shield-visual::before {
  content: "";
  position: absolute;
  inset: 10% -10% -6%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 70% 48%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18) 34%, transparent 68%),
    radial-gradient(ellipse at 23% 70%, rgba(79, 207, 238, 0.42), rgba(79, 207, 238, 0.16) 38%, transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(79, 207, 238, 0.14));
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.92;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

.shield-device {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 30px 34px rgba(8, 25, 39, 0.24));
  transition: transform 0.35s ease, filter 0.35s ease;
  transform: translate3d(58vw, 24px, 0);
}

.shield-visual.is-visible .shield-device {
  animation: shieldSlideInRight 1.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.shield-device-large {
  top: 16%;
  left: 50%;
  translate: -50% 0;
  z-index: 4;
  width: min(930px, 108%);
  animation-delay: 0.08s;
}

.shield-device-medium {
  top: 27%;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  width: min(860px, 100%);
  opacity: 0.96;
  animation-delay: 0.28s;
}

.shield-device-small {
  left: 50%;
  translate: -50% 0;
  bottom: 6%;
  z-index: 4;
  width: min(430px, 50%);
  animation-delay: 0.46s;
}

.shield-visual.is-visible:hover::before {
  opacity: 1;
  filter: blur(40px);
}

.shield-visual.is-visible:hover .shield-device {
  filter:
    drop-shadow(0 34px 38px rgba(8, 25, 39, 0.27))
    drop-shadow(0 0 26px rgba(79, 207, 238, 0.24));
}

.shield-visual.is-visible:hover .shield-device-large {
  transform: translate3d(-8px, -9px, 0) scale(1.012);
}

.shield-visual.is-visible:hover .shield-device-medium {
  transform: translate3d(-6px, -7px, 0) scale(1.012);
}

.shield-visual.is-visible:hover .shield-device-small {
  transform: translate3d(8px, -5px, 0) scale(1.012);
}

@keyframes shieldSlideInRight {
  from {
    opacity: 0;
    transform: translate3d(58vw, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.shield-capabilities {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(12, 25, 48, 0.34), rgba(12, 25, 48, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 24px 52px rgba(8, 25, 39, 0.18);
  backdrop-filter: blur(18px) saturate(126%);
}

.shield-capabilities h3,
.shield-capabilities li {
  color: #f4fbfc;
}

.shield-capabilities h3 {
  margin-bottom: 18px;
}

.shield-list {
  margin: 0;
}

.brochure-section {
  position: relative;
  overflow: hidden;
}

.brochure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.86fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.brochure-copy p {
  max-width: 620px;
  margin: 0 0 24px;
}

.brochure-actions {
  justify-content: flex-start;
}

.document-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: end;
}

.brochure-card {
  position: relative;
  display: block;
  justify-self: center;
  width: min(270px, 100%);
  perspective: 1100px;
  text-decoration: none;
  color: #fff;
}

.brochure-card::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: linear-gradient(135deg, rgba(35, 102, 119, 0.42), rgba(0, 0, 0, 0));
  filter: blur(16px);
  opacity: 0.7;
  transform: rotate(3deg);
}

.brochure-page {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.62);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-origin: left center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.brochure-page img {
  width: 100%;
}

.brochure-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 62%, rgba(255, 255, 255, 0.16), transparent 78% 100%);
  transform: translateX(-70%);
  animation: brochure-sheen 5.4s ease-in-out infinite;
}

.brochure-card:hover .brochure-page {
  box-shadow: 0 36px 86px rgba(35, 102, 119, 0.3);
  transform: rotateY(-3deg) rotateX(1deg) translateY(-6px);
}

.document-title {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes brochure-sheen {
  0%, 48% {
    transform: translateX(-80%);
  }
  72%, 100% {
    transform: translateX(90%);
  }
}

.forms {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--heading);
  font-weight: 800;
}

.form-wide,
form .button,
.form-note {
  grid-column: 1 / -1;
}

form .button {
  justify-self: start;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--field);
  font: inherit;
  background: transparent;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 40px clamp(22px, 6vw, 80px);
  color: var(--muted);
  background: var(--charcoal);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--heading);
}

.footer-logo {
  display: block;
  width: min(190px, 52vw);
  height: auto;
  flex: 0 0 auto;
}

.footer-copyright {
  justify-self: center;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-eu-badge {
  width: 150px;
  height: auto;
  opacity: 0.92;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  background: rgba(35, 102, 119, 0.25);
  border-color: rgba(79, 207, 238, 0.5);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(4, 18, 22, 0.94);
  border: 1px solid rgba(79, 207, 238, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.plain-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.plain-button:hover {
  border-color: rgba(79, 207, 238, 0.65);
  background: rgba(35, 102, 119, 0.28);
}

.plain-button[data-cookie-choice="accepted"] {
  border-color: var(--teal);
  background: var(--teal);
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(79, 207, 238, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 18, 22, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 20px rgba(79, 207, 238, 0.15);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(79, 207, 238, 0.78);
  background: rgba(35, 102, 119, 0.84);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 28px rgba(79, 207, 238, 0.26);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner.is-visible + .back-to-top {
  bottom: 126px;
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    background: var(--charcoal);
  }

  .nav {
    position: relative;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
  }

  .nav-toggle {
    position: fixed;
    top: 34px;
    right: 20px;
    z-index: 80;
    display: inline-flex !important;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: 0;
    border-color: rgba(79, 207, 238, 0.82);
    background: rgba(4, 18, 22, 0.92);
    box-shadow: 0 0 18px rgba(79, 207, 238, 0.22);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 20;
    display: grid;
    gap: 0;
    width: min(320px, 100%);
    padding: 8px;
    background: rgba(4, 18, 22, 0.96);
    border: 1px solid rgba(79, 207, 238, 0.22);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links > a:last-of-type {
    border-bottom: 0;
  }

  .language-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px 4px;
  }

  .language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 34px;
    padding: 0;
    text-align: center;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: 72vh;
    padding-top: 74px;
  }

  .hero-content {
    width: min(640px, 100%);
    text-align: right;
    padding-right: 22px;
    margin-right: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
  }

  .button-row {
    justify-content: flex-end;
  }

  .document-cards {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .content-grid,
  .mockup-grid,
  .admin-mockup-grid,
  .brochure-grid,
  .shield-grid,
  .shield-capabilities,
  .platform-group,
  .forms {
    grid-template-columns: 1fr;
  }

  .shield-section {
    background:
      radial-gradient(circle at 26% 22%, rgba(79, 207, 238, 0.16), transparent 34%),
      radial-gradient(circle at 76% 46%, rgba(29, 122, 141, 0.28), transparent 34%),
      linear-gradient(180deg, #8fc1ca 0%, #63a6b2 54%, #327485 100%);
  }

  .shield-visual {
    min-height: 720px;
  }

  .shield-brand {
    right: 0;
  }

  .shield-device-large {
    top: 16%;
    left: 50%;
    width: min(930px, 128%);
  }

  .shield-device-medium {
    top: 26%;
    left: 50%;
    width: min(860px, 118%);
  }

  .shield-device-small {
    left: 50%;
    bottom: 4%;
    width: min(430px, 58%);
  }

  .operate-grid,
  .operate-flow,
  .operate-steps {
    grid-template-columns: 1fr;
  }

  .operate-flow::before {
    inset: 8% auto 8% 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(79, 207, 238, 0.85), transparent);
  }

  .flow-node,
  .flow-connector {
    min-height: auto;
  }

  .flow-node {
    justify-items: center;
    text-align: center;
  }

  .node-icon,
  .node-icon-pair {
    justify-self: center;
  }

  .flow-connector {
    min-height: 96px;
    margin: 4px 0;
  }

  .connector-line-horizontal {
    display: none;
  }

  .connector-line-vertical {
    display: block;
    top: 6px;
    bottom: 6px;
    left: 50%;
    width: 28px;
    height: calc(100% - 12px);
    transform: translateX(-50%);
  }

  .flow-connector span {
    flex-direction: column;
    padding: 7px 10px;
  }

  .connector-arrow-desktop {
    display: none;
  }

  .device-showcase {
    min-height: 280px;
  }

  .device-mockup-primary {
    grid-column: 1;
    grid-row: auto;
    width: min(680px, 100%);
    justify-self: center;
    transform: none;
  }

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

  .admin-showcase .device-mockup-wide {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    transform: none;
  }

  .admin-device-wrap {
    width: 100%;
    transform: none;
  }

  .admin-title {
    font-size: clamp(1.45rem, 5.8vw, 2rem);
  }

  form {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner.is-visible + .back-to-top {
    bottom: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-topline {
    flex-direction: column;
    justify-content: center;
  }

  .footer-logo,
  .footer-copyright,
  .footer-links {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav {
    align-items: center;
  }

  .logo {
    width: clamp(174px, 52vw, 222px);
  }

  .nav-links {
    justify-content: initial;
    gap: 0;
    max-width: 320px;
    font-size: 0.76rem;
  }

  .hero {
    justify-items: center;
    min-height: 70vh;
    padding: 58px 20px 56px;
  }

  .hero-content {
    width: min(100%, 286px);
    padding-right: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12vw, 3.35rem);
  }

  .subtitle {
    font-size: clamp(1.04rem, 5.2vw, 1.28rem);
  }

  .document-cards {
    grid-template-columns: 1fr;
  }

  .shield-visual {
    min-height: 590px;
  }

  .shield-brand {
    position: relative;
    justify-content: flex-end;
    margin-bottom: 18px;
  }

  .shield-brand img {
    width: 54px;
    height: 54px;
  }

  .shield-brand-text span:first-child {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .shield-brand-text span:last-child {
    font-size: clamp(1.15rem, 5.2vw, 1.65rem);
  }

  .shield-device-large {
    top: 26%;
    left: 50%;
    width: 172%;
  }

  .shield-device-medium {
    top: 36%;
    left: 50%;
    width: 158%;
  }

  .shield-device-small {
    left: 50%;
    bottom: 6%;
    width: 76%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 820px) {
  body .site-header .nav .nav-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    z-index: 80 !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 48px !important;
    height: 48px !important;
    gap: 6px !important;
    transform: translateY(-50%) !important;
  }

  body .site-header .nav .nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    min-height: 2px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }
}


@media (min-width: 821px) and (max-height: 820px) {
  .hero {
    align-items: start;
    min-height: max(680px, 100vh);
    padding-top: clamp(150px, 23vh, 190px);
  }

  .hero-content {
    margin-top: clamp(18px, 4vh, 44px);
  }

  h1 {
    font-size: clamp(4.25rem, 7.8vw, 8.8rem);
  }

  .subtitle {
    font-size: clamp(1.18rem, 1.55vw, 1.72rem);
  }
}
