:root {
  /* Typography */
  --font-primary: "Inter", system-ui, sans-serif;

  --text-display: 56px;
  --text-h1: 42px;
  --text-h2: 34px;
  --text-h3: 26px;
  --text-body: 18px;
  --text-small: 14px;

  /* Spacing */
  --space-section-display: 112px;
  --space-section: 96px;
  --space-section-compact: 80px;
  --space-section-tight: 66px;

  --space-grid: 24px;
  --space-grid-gap: 32px;
  --space-grid-large: 36px;

  --radius-card: 12px;
  --radius-panel: 14px;
  --radius-large: 18px;

  /* Layout */
  --container-width: 980px;

  /* Colors */
  --color-text: #111;
  --color-muted: #6a6a6a;
  --color-surface: #ffffff;

  --ink: #101418;
  --ink-soft: #2a3440;
  --muted-text: #6a7b95;
  --surface-brand-blue-100: #eef3fb;
  --surface-brand-blue-200: #e8effa;
  --surface-divider-blue: rgba(40, 60, 95, 0.08);
  --bg: var(--color-surface);
  --bg-dark: #0d1420;
  --accent: #324fa2;
  --line: #d8dde6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
  border-bottom: 0;
  backdrop-filter: none;
}
.header-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  position: relative;
}
.logo {
  display: block;
  height: auto;
}
.header {
  display: flex;
  align-items: center;
  height: 72px;
}
.logo-header {
  height: 40px;
  width: auto;
  display: block;
  max-width: none;
}
.logo-footer { width: 190px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav {
  position: absolute;
  left: 56%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  align-items: center;
  line-height: 1;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 6px;
}
.nav a.active {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 13, 25, 0.55), rgba(8, 13, 25, 0.55));
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero-panel {
  background: rgba(13, 18, 33, 0.38);
  padding: 16px 40px;
  max-width: 760px;
}
.hero .hero-content {
  max-width: 640px;
}
.hero h1 {
  font-family: inherit;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero p { max-width: 920px; margin: 0 auto; font-size: clamp(1rem, 1.2vw, 1.12rem); }
.wrap { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
.section.tight {
  padding-top: var(--space-section-tight);
  padding-bottom: var(--space-section-tight);
}
.section.compact {
  padding-top: var(--space-section-compact);
  padding-bottom: var(--space-section-compact);
}
.section.display {
  padding-top: var(--space-section-display);
  padding-bottom: var(--space-section-display);
}
.section.dark { background: var(--bg-dark); color: #fff; }
.section.band {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.section.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 36, 0.64);
}
.section.band > .wrap { position: relative; }
.center { text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: #6a7b95; margin-bottom: 10px; }
h2 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
}
p {
  font-size: 1rem;
  line-height: 1.62;
  color: inherit;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.58;
  font-weight: 400;
  color: var(--ink-soft);
}
.dark .lead, .band .lead, .hero .lead { color: rgba(255,255,255,0.9); }
.display-text {
  font-size: clamp(2.1rem, 3.1vw, 3.2rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
}
.display-sub {
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
}
.section-two-column {
  padding-top: var(--space-section-compact);
  padding-bottom: var(--space-section-compact);
}
.section-two-column__inner {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: clamp(38px, 5vw, 84px);
  align-items: start;
}
.section-two-column__left::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #2f5bea;
  margin-bottom: 18px;
}
.section-two-column__left h2 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
}
.section-two-column__left h3 {
  margin: 24px 0 0;
  color: #2b5aa6;
  font-size: clamp(1.24rem, 1.55vw, 1.42rem);
  font-weight: 500;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: #6a7b95;
  margin: 0 0 8px;
}
.section-title {
  margin: 0 0 20px;
  font-size: 1.16rem;
  font-weight: 600;
  color: #122033;
}
.section-block + .section-block {
  margin-top: 24px;
}
.section-block h5 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #122033;
}
.section-block p {
  margin: 0;
  color: rgba(18, 32, 51, 0.82);
  line-height: 1.62;
  max-width: 38ch;
}
.btn {
  display: inline-block;
  margin-top: 22px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 14.5px;
}
.btn.secondary { background: transparent; border: 1px solid currentColor; }
.two-col {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.04fr; }
.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.product-hero-actions .btn {
  margin-top: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border: 1px solid #e8edf4;
  padding: 20px;
  background: #fff;
}
.card p + p,
.card p + ul,
.card p + ol {
  margin-top: 10px;
}
.card ul,
.card ol {
  margin: 10px 0 0;
  padding-left: 18px;
}
.card li {
  line-height: 1.58;
}
.card li + li {
  margin-top: 6px;
}
.card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  margin-bottom: 14px;
}
.dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); }
.product-tile { text-align: center; border: 1px solid var(--line); padding: 24px 12px; }
.product-tile img { width: 156px; height: 156px; margin: 0 auto 14px; object-fit: cover; }
.feature-icon img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.list { margin: 0; padding-left: 18px; }
.list li {
  line-height: 1.62;
}
.list li + li {
  margin-top: 6px;
}
blockquote {
  margin: 0;
  padding: 20px;
  border-left: 3px solid var(--accent);
  font-size: 1.1rem;
  background: rgba(255,255,255,0.08);
}
.site-footer {
  background: #000;
  color: #d8d8d8;
  padding: 38px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr .86fr;
  gap: 58px;
  align-items: start;
}
.footer-grid > div {
  align-self: start;
}
.footer-grid .logo { width: 166px; margin-bottom: 10px; margin-top: 0; }
.footer-grid > div:first-child p {
  margin: 8px 0 0;
  font-size: 12px;
  opacity: 0.72;
  line-height: 1.45;
}
.footer-grid .center p {
  font-size: var(--text-small);
  margin: 0 0 12px;
  line-height: 1.58;
}
.footer-grid .center .footer-phone {
  display: inline-block;
  margin-top: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.16;
  text-align: right;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { display: block; margin-bottom: 4px; color: #d8d8d8; }
.footer-links a { margin-bottom: 0; }
.site-footer .footer-nav .footer-links .privacy-link {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}
.footer-nav .footer-social { order: 2; }
.site-footer .footer-nav .footer-social {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.site-footer .footer-social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid #d9d9d9;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
}

.section img {
  border-radius: 0;
}

/* Screenshot fidelity: homepage */
.page-index {
  background: #ececed;
}
.page-index .index-hero {
  background-image: url("assets/images/index-hero.jpg");
}
.page-index .hero {
  min-height: clamp(296px, 35vh, 408px);
  max-height: 408px;
  display: block;
  padding: 0;
  overflow: hidden;
}
.page-index .hero-bg-video {
  filter: brightness(0.9) contrast(1.06) saturate(1.08);
  object-position: center 90%;
  transform: translateY(-30%) scale(1.02);
}
.page-index .hero::before {
  background: rgba(0, 0, 0, 0.36);
}
.page-index .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(22, 14, 8, 0.08);
  background-image:
    linear-gradient(rgba(255, 180, 90, 0.52) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 180, 90, 0.52) 1px, transparent 1px),
    linear-gradient(rgba(255, 180, 90, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 180, 90, 0.12) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px, 16px 16px, 16px 16px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity: 0.38;
}
.page-index .hero .hero-overlay {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 40px));
  max-width: 720px;
  padding: 20px;
  text-align: center;
}
.page-index .hero .hero-overlay h1,
.page-index .hero .hero-overlay p {
  margin-left: auto;
  margin-right: auto;
}
.page-index .hero .hero-overlay h1 {
  font-size: clamp(3rem, 3.2vw, 3.25rem);
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: balance;
}
.page-index .hero .hero-overlay .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.page-index .index-perceval {
  min-height: 0;
  background: #000;
  padding-top: 42px;
  padding-bottom: 44px;
}
.page-index .index-perceval h2 {
  font-family: inherit;
  font-size: clamp(1.875rem, 1.85vw, 2rem);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 10px;
}
.page-index .perceval-announcement {
  max-width: 980px;
}
.page-index .perceval-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-index .perceval-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.page-index .perceval-logos img {
  width: auto;
  height: auto;
  max-height: 46px;
  display: block;
  object-fit: contain;
}
.page-index .perceval-logos img:last-child {
  transform: translateY(1px);
}
.page-index .perceval-x {
  font-size: 28px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1;
}
.page-index .index-payment h2 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 12px;
}
.page-index .dash {
  font-size: 50px;
  line-height: 1;
  margin: 2px 0 10px;
}
.page-index .index-payment .lead {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2px;
}
.page-index .index-payment .wrap.center .lead + .lead {
  margin-top: 4px;
}
.page-index .payment-cards {
  margin-top: var(--space-grid);
  gap: var(--space-grid);
  align-items: stretch;
}
.page-index .payment-cards .card {
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-index .payment-cards .card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  margin: 0 0 12px;
}
.page-index .payment-cards .card h3 {
  font-size: var(--text-body);
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
}
.page-index .payment-cards .card p {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0;
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
}
.page-index .index-retail {
  background: #ececed;
  padding-top: 56px;
  padding-bottom: 64px;
}
.page-index .retail-stack {
  position: relative;
  height: clamp(420px, 46vw, 480px);
  max-height: 480px;
  border-radius: 8px;
  overflow: hidden;
}
.page-index .retail-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.22) 25%,
    rgba(0, 0, 0, 0.07) 45%,
    rgba(0, 0, 0, 0) 65%
  );
  z-index: 1;
}
.page-index .retail-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.page-index .retail-card {
  position: absolute;
  left: clamp(56px, 7vw, 110px);
  bottom: clamp(16px, 4vh, 38px);
  width: min(520px, calc(100% - 84px));
  max-width: 520px;
  background: transparent;
  padding: 0;
  z-index: 2;
}
.page-index .retail-card h2 {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(1.62rem, 2.15vw, 2.05rem);
  color: #ffffff;
  margin-bottom: 12px;
}
.page-index .retail-card .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
  margin-bottom: 12px;
  line-height: 1.6;
}
.page-index .retail-card .btn {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: var(--space-grid);
  font-weight: 600;
}
.page-index .index-suite .grid-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: var(--space-grid-gap);
}
.page-index .index-suite .product-tile {
  min-height: 272px;
  border: 0;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.page-index .index-suite .product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.page-index .index-suite .product-tile img {
  width: auto;
  height: 132px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto 16px;
}
.page-index .index-suite .product-tile h3 {
  font-size: 1.15rem;
}
.page-index .index-suite h2 {
  font-family: inherit;
  font-weight: 600;
}
.page-index .index-about .two-col {
  grid-template-columns: .9fr 1.23fr;
}
.page-index .index-about h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-family: inherit;
  font-weight: 600;
}
.page-index .index-about .btn {
  min-width: 132px;
  text-align: center;
  color: #202020;
  border: 1px solid #707070;
  background: transparent;
}
.page-index .index-about .about-media {
  position: relative;
  width: 100%;
  height: 596px;
  border-radius: 16px;
  overflow: hidden;
}
.page-index .index-about .about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.page-index .index-about .about-logo-overlay {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: min(180px, 42%);
  height: auto;
}
.page-index .index-security {
  background-image: url("assets/images/aircraft-wallpaper.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  padding-bottom: 68px;
}
.page-index .index-security::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.28) 38%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.page-index .index-security > .wrap {
  position: relative;
  z-index: 1;
}
.page-index .index-security h2 {
  text-align: left;
  color: #fff;
  margin-bottom: 24px;
}
.page-index .security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.page-index .security-copy {
  display: grid;
  align-content: start;
}
.page-index .security-copy .lead {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}
.page-index .security-copy .lead:first-child {
  margin-top: 0;
}
.page-index .security-copy .lead + .lead {
  margin-top: 8px;
}
.page-index .security-side {
  align-self: start;
  padding-right: clamp(0px, 4vw, 52px);
}
.page-index .security-grid .list {
  list-style: none;
  padding: 0;
  margin: 0;
  align-self: start;
}
.page-index .security-grid .list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.62;
}
.page-index .security-bullets li {
  margin-bottom: 16px;
}
.page-index .security-grid .list li::before {
  content: "◆";
  color: #8dc2ff;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.page-index .security-copy .btn {
  justify-self: start;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  min-width: 126px;
  margin-top: 16px;
}
.page-index .security-copy .btn:hover,
.page-index .security-copy .btn:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.08);
}

.page-cubuspos .btn,
.page-cubussky .btn {
  background: #243c80;
}

.page-cubuspos .pos-hero {
  background-image: url('assets/images/clouds-dark.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-cubuspos .pos-hero .two-col {
  align-items: center;
  gap: clamp(36px, 5vw, 58px);
}
.page-cubuspos .pos-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 14px;
  letter-spacing: 0.18em;
}
.page-cubuspos .pos-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.16;
  max-width: 560px;
  color: #fff;
}
.page-cubuspos .pos-hero p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
}
.page-cubuspos .pos-hero .lead {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}
.page-cubuspos .pos-hero-copy {
  max-width: 470px;
}
.page-cubuspos .pos-hero-copy p + p {
  margin-top: 10px;
}
.page-cubuspos .pos-hero img {
  width: min(550px, 100%);
  margin-left: auto;
  border-radius: var(--radius-card);
}
.page-cubuspos .pos-foundation {
}
.page-cubuspos .pos-foundation .two-col {
  align-items: center;
}
.page-cubuspos .pos-foundation p {
  max-width: 560px;
}
.page-cubuspos .pos-foundation img {
  width: min(212px, 100%);
  margin-left: auto;
}
.page-cubuspos .pos-features {
  padding-top: var(--space-section-compact);
  padding-bottom: var(--space-section-compact);
  background: linear-gradient(180deg, #e8eef7 0%, #e1e8f3 100%);
  border-top: 1px solid var(--surface-divider-blue);
}
.page-cubuspos .pos-features .wrap.center {
  margin-bottom: 0;
}
.page-cubuspos .pos-features h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.page-cubuspos .pos-features .grid-4 {
  max-width: 1120px;
  margin: 0 auto;
  gap: var(--space-grid);
}
.page-cubuspos .pos-features .card {
  background: var(--color-surface);
  border-radius: var(--radius-panel);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.page-cubuspos .pos-features .feature-icon img {
  width: min(220px, 100%);
  aspect-ratio: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}
.page-cubuspos .pos-features .card h3 {
  margin: 0 auto;
  min-height: 3.2em;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 210px;
}
.page-cubuspos .pos-orc {
  background-image: url('assets/images/products-overlay.png');
  background-size: cover;
  background-position: center 42%;
  color: #fff;
  position: relative;
}
.page-cubuspos .pos-orc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.24) 0%, rgba(8, 14, 28, 0.44) 100%);
}
.page-cubuspos .pos-orc .pos-orc-content {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}
.page-cubuspos .pos-orc h2 {
  margin: 0 0 10px;
}
.page-cubuspos .pos-orc h3 {
  margin: 18px 0 12px;
  color: #fff;
}
.page-cubuspos .pos-orc .lead {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92);
}
.page-cubuspos .pos-orc-copy {
  max-width: 500px;
}
.page-cubuspos .pos-orc-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-cubuspos .pos-orc img {
  width: min(300px, 34vw);
  max-width: 300px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  opacity: 1;
  display: block;
  margin: 0;
}
.page-cubuspos .pos-phone-strip {
  background-image: url('assets/images/cubuspos-banner.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: clamp(280px, 22vw, 340px);
  min-height: 280px;
  background-color: #f7f9fc;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 12px;
}
.page-cubuspos .pos-phone-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.28) 100%);
  pointer-events: none;
}
.page-cubuspos .pos-banner {
  min-height: clamp(280px, 34vw, 440px);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-cubuspos .pos-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 40, 0.4) 0%, rgba(15, 24, 40, 0.28) 62%, rgba(15, 24, 40, 0.12) 100%);
}
.page-cubuspos .pos-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, #f5f7fb 100%);
}
.page-cubuspos .pos-banner .pos-statement-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-cubuspos .pos-banner .wrap {
  position: relative;
  z-index: 1;
}
.page-cubuspos .pos-banner .display-text {
  max-width: 19ch;
  margin: 0 auto;
  line-height: 1.2;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 600;
}
.page-cubuspos .pos-closing {
  background: #fff;
}

.document-hero {
  background: #f5f8fc;
  min-height: 0;
}
.document-hero .wrap {
  max-width: 720px;
}
.document-hero .eyebrow {
  margin-bottom: 12px;
}
.document-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.16;
}
.document-hero .lead {
  margin: 0;
  max-width: 60ch;
}
.document-page .wrap {
  display: flex;
  justify-content: center;
}
.document-prose {
  width: 100%;
  max-width: 720px;
}
.document-meta {
  margin: 0 0 28px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--color-muted);
}
.document-section + .document-section {
  margin-top: 30px;
}
.document-prose h2 {
  margin: 0 0 8px;
  font-size: clamp(1.12rem, 1.2vw, 1.2rem);
  font-weight: 550;
  line-height: 1.36;
}
.document-prose h3 {
  margin: 14px 0 4px;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 550;
  line-height: 1.42;
}
.document-prose p {
  margin: 0 0 12px;
  max-width: 66ch;
  line-height: 1.72;
}
.document-prose .list {
  margin: 8px 0 0;
  max-width: 66ch;
  display: grid;
  gap: 7px;
}

.page-privacypol .privacy-hero {
  background-image: url("assets/images/ethics-hero-bg.png");
  background-size: cover;
  background-position: center;
  min-height: 380px;
  padding-top: 96px;
  padding-bottom: 86px;
}
.page-privacypol .privacy-hero::before {
  background: linear-gradient(rgba(11, 17, 30, 0.52), rgba(11, 17, 30, 0.45));
}
.page-privacypol .privacy-hero-content {
  width: 100%;
  color: #fff;
  text-align: left;
  max-width: 620px;
}
.page-privacypol .privacy-hero-content .eyebrow {
  margin-bottom: 16px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.86);
}
.page-privacypol .privacy-hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.16;
  color: #fff;
  max-width: 560px;
}
.page-privacypol .privacy-hero-content .lead {
  margin: 0;
  max-width: 60ch;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
}
.page-privacypol .privacy-policy .wrap {
  display: flex;
  justify-content: center;
}
.page-privacypol .privacy-prose {
  width: 100%;
  max-width: 720px;
}
.page-privacypol .privacy-prose > p:first-child,
.page-privacypol .privacy-prose .privacy-meta {
  margin: 0 0 24px;
  color: #4f5f74;
}
.page-privacypol .privacy-document-intro {
  margin: 0;
  padding-bottom: 4px;
}
.page-privacypol .privacy-prose .privacy-meta {
  margin-bottom: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--color-muted);
}
.page-privacypol .privacy-document-intro h2 {
  margin-top: 0;
  margin-bottom: 8px;
}
.page-privacypol .privacy-document-intro p {
  margin: 0;
  max-width: 68ch;
}
.page-privacypol .privacy-section {
  margin-top: 28px;
}
.page-privacypol .privacy-document-intro + .privacy-section {
  margin-top: 32px;
}
.page-privacypol .privacy-prose h2 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: clamp(1.12rem, 1.2vw, 1.2rem);
  font-weight: 550;
  line-height: 1.36;
  letter-spacing: -0.003em;
}
.page-privacypol .privacy-prose h3 {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 550;
  line-height: 1.42;
}
.page-privacypol .privacy-prose p {
  margin: 0;
  max-width: 66ch;
  line-height: 1.72;
}
.page-privacypol .privacy-prose .list {
  margin: 8px 0 0;
  max-width: 66ch;
  display: grid;
  gap: 7px;
}
.page-privacypol .privacy-prose .list li {
  line-height: 1.7;
}
.page-privacypol .privacy-prose .policy-num {
  color: #5c6f89;
  font-weight: 500;
  margin-right: 6px;
  letter-spacing: 0.01em;
}
.page-privacypol .privacy-prose a {
  color: #2e4ea5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-about .about-hero {
  background-image: url("assets/images/about-partners.png");
  background-size: cover;
  background-position: center;
  min-height: 360px;
  padding-top: 90px;
  padding-bottom: 84px;
}
.page-about .about-hero::before {
  background: linear-gradient(rgba(10, 16, 30, 0.46), rgba(10, 16, 30, 0.40));
}
.page-about .about-hero-content {
  color: #fff;
  max-width: 640px;
}
.page-about .about-hero-content .eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.86);
}
.page-about .about-hero-content h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.16;
}
.page-about .about-hero-content .lead {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
}
.page-about .about-story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 44px;
  align-items: start;
}
.page-about .about-story h2 {
  margin-bottom: 14px;
}
.page-about .about-story p {
  max-width: 62ch;
}
.page-about .about-story-media {
  position: relative;
}
.page-about .about-media-panel {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-large);
  overflow: hidden;
}
.page-about .about-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.page-about .about-logo-overlay {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: min(180px, 42%);
  height: auto;
}
.page-about .about-accent-image {
  position: absolute;
  left: -24px;
  bottom: -28px;
  width: min(220px, 38%);
  border-radius: var(--radius-panel);
  box-shadow: 0 14px 34px rgba(9, 16, 30, 0.2);
}
.page-about .about-framework {
  background: #f4f7fb;
}
.page-about .about-framework .card {
  height: 100%;
  text-align: left;
  padding: 28px;
}
.page-about .about-framework .card h3 {
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.page-about .about-contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 50px;
  align-items: start;
}
.page-about .about-contact p {
  margin: 0 0 10px;
  max-width: 60ch;
}
.page-about .about-contact .btn {
  margin-top: 10px;
}
.page-about .about-contact a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-blog .blog-hero h1 {
  margin-bottom: 12px;
}
.page-blog .blog-hero .lead {
  max-width: 62ch;
  margin: 0;
}
.page-blog .blog-list {
  display: grid;
  gap: 24px;
}
.page-blog .blog-item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  align-items: start;
}
.page-blog .blog-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.page-blog .blog-item-content {
  display: grid;
  gap: 10px;
}
.page-blog .blog-item .blog-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.page-blog .blog-item h2 {
  margin: 0;
  font-size: clamp(1.34rem, 1.8vw, 1.62rem);
  line-height: 1.28;
}
.page-blog .blog-item p {
  margin: 0;
  max-width: 64ch;
}
.page-blog .blog-item .btn {
  justify-self: start;
  margin-top: 2px;
}
.page-blog .blog-status {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.page-contact .contact-hero {
  background: #f5f8fc;
}
.page-contact .contact-hero-content {
  max-width: 640px;
}
.page-contact .contact-hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.15;
}
.page-contact .contact-hero-content .lead {
  margin: 0;
  max-width: 56ch;
}
.page-contact .contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
}
.page-contact .contact-details {
  max-width: 34rem;
}
.page-contact .contact-details .eyebrow,
.page-contact .contact-form-panel .eyebrow {
  margin-bottom: 8px;
}
.page-contact .contact-details .lead,
.page-contact .contact-form-intro {
  margin: 0;
  max-width: 44ch;
}
.page-contact .contact-details h2 {
  margin: 0 0 12px;
  font-size: clamp(1.02rem, 1.08vw, 1.12rem);
  line-height: 1.25;
}
.page-contact .contact-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.page-contact .contact-detail-item {
  border-top: 1px solid #e1e7f0;
  padding-top: 14px;
}
.page-contact .contact-detail-label {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b6a80;
}
.page-contact .contact-details p {
  margin: 0 0 2px;
  max-width: 52ch;
  line-height: 1.5;
}
.page-contact .contact-details a {
  color: #2e4ea5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-contact .contact-form-panel {
  border: 1px solid #e1e7f0;
  border-radius: var(--radius-panel);
  padding: clamp(24px, 3vw, 34px);
  background: #f8fafd;
  max-width: 468px;
  width: 100%;
}
.page-contact .contact-form-panel h2 {
  margin-bottom: 12px;
}
.page-contact .contact-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.page-contact .contact-form label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #122033;
  margin: 0;
}
.page-contact .contact-form input,
.page-contact .contact-form textarea {
  width: 100%;
  border: 1px solid #c8d3e2;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: #1b2430;
  background: #fff;
  margin: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.page-contact .contact-form input:focus,
.page-contact .contact-form textarea:focus {
  outline: none;
  border-color: #8ea2c3;
  box-shadow: 0 0 0 3px rgba(50, 79, 162, 0.08);
}
.page-contact .contact-form textarea {
  resize: vertical;
  min-height: 168px;
}
.page-contact .contact-form .btn {
  margin-top: 10px;
  justify-self: start;
}
.page-contact .contact-form-note {
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5f6e82;
  max-width: 48ch;
}
.page-cubusgo .go-hero {
  background-image: url("assets/images/cubusgo-hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding-top: 84px;
  padding-bottom: 78px;
}
.page-cubusgo .go-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.62) 0%, rgba(10, 18, 32, 0.52) 100%);
}
.page-cubusgo .go-hero > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubusgo .go-hero .two-col > div:first-child {
  max-width: 560px;
}
.page-cubusgo .go-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
}
.page-cubusgo .go-hero .lead {
  margin-bottom: 12px;
}
.page-cubusgo .go-hero .lead,
.page-cubusgo .go-hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 54ch;
}
.page-cubusgo .go-hero img {
  width: min(520px, 100%);
  margin-left: auto;
  border-radius: var(--radius-card);
}
.page-cubusgo .go-checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.page-cubusgo .go-checklist li {
  margin-bottom: 10px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.95);
}
.page-cubusgo .go-checklist li::before {
  content: "✓";
  margin-right: 8px;
}
.page-cubusgo .go-intro {
  background: #fff;
}
.page-cubusgo .go-intro .two-col {
  align-items: start;
}
.page-cubusgo .go-intro .two-col > div:first-child {
  max-width: 620px;
}
.page-cubusgo .go-intro .eyebrow {
  margin-bottom: 10px;
}
.page-cubusgo .go-intro h2 {
  margin-bottom: 14px;
  max-width: 18ch;
}
.page-cubusgo .go-intro h3 {
  color: #2b5aa6;
  margin: 0 0 18px;
}
.page-cubusgo .go-intro p {
  max-width: 62ch;
  margin: 0 0 12px;
  line-height: 1.62;
}
.page-cubusgo .go-intro blockquote {
  margin: 26px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: #f3f6fa;
  color: #1d2c40;
  max-width: 60ch;
  line-height: 1.5;
}
.page-cubusgo .go-intro img {
  width: min(540px, 100%);
  margin-top: 8px;
  margin-left: auto;
}
.page-cubusgo .go-components {
  background: linear-gradient(180deg, #e8eef7 0%, #e1e8f3 100%);
  border-top: 1px solid var(--surface-divider-blue);
}
.page-cubusgo .go-components .wrap.center h2 {
  margin-bottom: 12px;
}
.page-cubusgo .go-components .wrap.center .lead {
  max-width: 760px;
}
.page-cubusgo .go-components-grid {
  gap: var(--space-grid);
  align-items: stretch;
}
.page-cubusgo .go-components .card--feature {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-panel);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.page-cubusgo .go-components .card--feature img {
  width: auto;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
  align-self: center;
}
.page-cubusgo .go-components .card--feature h3 {
  margin: 0 0 10px;
  line-height: 1.3;
}
.page-cubusgo .go-components .card--feature p {
  margin: 0 0 8px;
  max-width: 33ch;
  line-height: 1.6;
  color: rgba(22, 32, 45, 0.8);
}
.page-cubusgo .go-feature-list {
  margin: 6px 0 0;
  padding-left: 18px;
  line-height: 1.58;
  color: rgba(22, 32, 45, 0.82);
}
.page-cubusgo .go-feature-list li {
  margin-bottom: 8px;
}
.page-cubusgo .go-benefits {
  background: #f5f7fb;
}
.page-cubusgo .go-benefits .grid-3 {
  gap: var(--space-grid);
}
.page-cubusgo .go-benefits .card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-cubusgo .go-benefits .card h3 {
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-cubusgo .go-benefits .card p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: rgba(22, 32, 45, 0.8);
}
.page-cubusgo .go-benefits .card p:first-of-type {
  font-weight: 500;
  color: rgba(16, 25, 38, 0.88);
}
.page-cubusstar .star-hero {
  background-image: url("assets/images/cubusstar-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding-top: 88px;
  padding-bottom: 84px;
}
.page-cubusstar .star-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 17, 30, 0.65) 0%, rgba(9, 17, 30, 0.56) 100%);
}
.page-cubusstar .star-hero > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubusstar .star-hero .two-col {
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
}
.page-cubusstar .star-hero img {
  width: min(440px, 100%);
  margin-right: 0;
  margin-left: auto;
}
.page-cubusstar .star-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.page-cubusstar .star-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-cubusstar .star-hero .lead {
  margin-bottom: 22px;
}
.page-cubusstar .star-hero .lead,
.page-cubusstar .star-hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
}
.page-cubusstar .star-intro {
  background: #fff;
}
.page-cubusstar .star-intro-head {
  max-width: 900px;
}
.page-cubusstar .star-intro h2 {
  font-size: var(--text-h2);
  margin-bottom: 14px;
}
.page-cubusstar .star-intro .lead {
  color: rgba(24, 35, 49, 0.84);
  margin: 0 auto;
  max-width: 720px;
}
.page-cubusstar .star-overview-wrap {
  margin-top: 40px;
  max-width: 1120px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-cubusstar .star-overview-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}
.page-cubusstar .star-features {
  position: relative;
  overflow: hidden;
  background-image: url("assets/images/cubusstar-abstract-bg.jpeg");
  background-size: cover;
  background-position: center;
}
.page-cubusstar .star-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 31, 0.78);
}
.page-cubusstar .star-features > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubusstar .star-features h2 {
  margin-bottom: 28px;
}
.page-cubusstar .star-features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: var(--space-grid-gap);
  align-items: stretch;
}
.page-cubusstar .star-features-grid .card {
  border-radius: var(--radius-panel);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  backdrop-filter: blur(2px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-cubusstar .star-features-grid .card h3 {
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.32;
}
.page-cubusstar .star-features-grid .card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.62;
}
.page-cubusshop .shop-hero {
  background-image: url("assets/images/cubusshop-hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.page-cubusshop .shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 30, 0.67) 0%, rgba(9, 16, 30, 0.56) 100%);
}
.page-cubusshop .shop-hero > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubusshop .shop-hero .two-col {
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
}
.page-cubusshop .shop-hero h1 {
  color: #fff;
  margin-bottom: 14px;
  max-width: 18ch;
  line-height: 1.08;
}
.page-cubusshop .shop-hero .lead,
.page-cubusshop .shop-hero p {
  color: rgba(255, 255, 255, 0.93);
  max-width: 56ch;
}
.page-cubusshop .shop-hero img {
  width: min(560px, 100%);
  margin-left: auto;
}
.page-cubusshop .shop-values {
  background: #fff;
}
.page-cubusshop .shop-values .two-col {
  align-items: start;
}
.page-cubusshop .shop-value-block {
  padding: 26px 28px;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f8fafd;
  height: 100%;
}
.page-cubusshop .shop-value-block h2 {
  font-size: var(--text-h2);
  margin-bottom: 14px;
}
.page-cubusshop .shop-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-cubusshop .shop-checklist li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(24, 35, 49, 0.84);
}
.page-cubusshop .shop-checklist li::before {
  content: "✅";
  margin-right: 8px;
}
.page-cubusshop .shop-abc-media .wrap {
  max-width: 1120px;
}
.page-cubusshop .shop-abc-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-panel);
}
.page-cubusshop .shop-seamless {
  background: #fff;
}
.page-cubusshop .shop-seamless .two-col {
  align-items: start;
}
.page-cubusshop .shop-seamless h2 {
  margin-bottom: 12px;
  max-width: 20ch;
}
.page-cubusshop .shop-seamless p {
  margin: 0 0 12px;
  line-height: 1.62;
  color: rgba(22, 33, 47, 0.84);
  max-width: 62ch;
}
.page-cubusshop .shop-seamless img {
  width: min(980px, 100%);
  border-radius: var(--radius-card);
}
.page-cubusshop .shop-bullets {
  margin: 0 0 12px;
  padding-left: 18px;
}
.page-cubusshop .shop-bullets li {
  margin-bottom: 8px;
  line-height: 1.58;
}
.page-cubusshop .shop-highlight {
  margin: 10px 0 0;
  color: #2b5aa6;
  font-weight: 600;
}
.page-cubusshop .shop-handover {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  border-top: 1px solid var(--surface-divider-blue);
}
.page-cubusshop .shop-handover .two-col {
  align-items: center;
}
.page-cubusshop .shop-handover h2 {
  margin-bottom: 6px;
}
.page-cubusshop .shop-handover h3 {
  color: #324fa2;
  margin-bottom: 14px;
}
.page-cubusshop .shop-handover p {
  margin: 0 0 12px;
  line-height: 1.62;
  color: rgba(22, 33, 47, 0.84);
}
.page-cubusshop .shop-handover img {
  width: min(520px, 100%);
  margin-left: auto;
  border-radius: var(--radius-card);
}
.page-cubusshop .shop-reach {
  background-image: url("assets/images/cubusshop-reach-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.page-cubusshop .shop-reach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 31, 0.68) 0%, rgba(10, 18, 31, 0.62) 100%);
}
.page-cubusshop .shop-reach > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubusshop .shop-reach h2,
.page-cubusshop .shop-reach p,
.page-cubusshop .shop-reach li {
  color: rgba(255, 255, 255, 0.93);
}
.page-cubusshop .shop-reach h2 {
  max-width: 18ch;
}
.page-cubusshop .shop-reach .lead {
  max-width: 58ch;
}
.page-cubusshop .shop-reach .shop-highlight {
  color: rgba(255, 255, 255, 0.96);
}
.page-cubusshop .shop-reach img {
  width: min(320px, 100%);
  margin: 0 auto;
}
.page-cubusshop .shop-whitelabel {
  background: #fff;
}
.page-cubusshop .shop-whitelabel-head {
  max-width: 820px;
}
.page-cubusshop .shop-whitelabel-head h2 {
  margin-bottom: 14px;
}
.page-cubusshop .shop-whitelabel-head p {
  margin: 0 0 10px;
  line-height: 1.62;
  color: rgba(22, 33, 47, 0.84);
}
.page-cubusshop .shop-whitelabel-media {
  margin-top: 20px;
  max-width: 1080px;
}
.page-cubusshop .shop-whitelabel-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}
.page-cubussense .sense-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-cubussense .sense-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 480px;
}
.page-cubussense .sense-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.50);
  z-index: 1;
}
.page-cubussense .sense-hero > .wrap {
  position: relative;
  z-index: 2;
}
.page-cubussense .sense-hero-layout {
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.page-cubussense .sense-hero-copy {
  max-width: 560px;
}
.page-cubussense .sense-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}
.page-cubussense .sense-hero .lead,
.page-cubussense .sense-hero p {
  color: rgba(255, 255, 255, 0.93);
}
.page-cubussense .sense-hero-copy p {
  max-width: 62ch;
}
.page-cubussense .sense-hero-visual {
  justify-self: end;
}
.page-cubussense .sense-hero-visual img {
  width: min(420px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 14px 28px rgba(5, 10, 20, 0.24));
}
.page-cubussense .sense-intro {
  background: #fff;
}
.page-cubussense .sense-intro-copy {
  max-width: 720px;
}
.page-cubussense .sense-intro h2 {
  margin-bottom: 14px;
  max-width: 21ch;
}
.page-cubussense .sense-intro p {
  margin: 0 0 12px;
  color: rgba(22, 33, 47, 0.84);
  line-height: 1.62;
  max-width: 62ch;
}
.page-cubussense .sense-intro h3 {
  color: #2b5aa6;
  margin: 18px 0 10px;
}
.page-cubussense .sense-sustainability {
  background: linear-gradient(180deg, #e8eef7 0%, #e1e8f3 100%);
  border-top: 1px solid var(--surface-divider-blue);
}
.page-cubussense .sense-sustainability .lead {
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
}
.page-cubussense .sense-sustainability-grid {
  gap: var(--space-grid);
  align-items: stretch;
  margin-top: 24px;
}
.page-cubussense .sense-sustainability-grid .card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-panel);
  padding: 24px;
  height: 100%;
}
.page-cubussense .sense-sustainability-grid .card h3 {
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-cubussense .sense-sustainability-grid .card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(22, 32, 45, 0.8);
}
.page-cubussense .sense-closing {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.page-cubussense .sense-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 16, 30, 0.40),
    rgba(8, 16, 30, 0.52)
  );
  z-index: 1;
}
.page-cubussense .sense-closing > .wrap {
  position: relative;
  z-index: 2;
}
.page-cubussense .sense-closing h2 {
  color: #fff;
  margin-bottom: 26px;
}
.page-cubussense .sense-closing-grid {
  gap: var(--space-grid);
  align-items: stretch;
}
.page-cubussense .sense-closing-grid .card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-panel);
  padding: 22px;
  height: 100%;
}
.page-cubussense .sense-closing-grid .card h3 {
  margin-bottom: 10px;
  color: #132033;
  line-height: 1.3;
}
.page-cubussense .sense-closing-grid .card p {
  margin: 0;
  color: rgba(19, 32, 51, 0.82);
  line-height: 1.58;
}
.page-cubussky .section-sky-suite {
  background: linear-gradient(
    180deg,
    #e8eef7 0%,
    #e1e8f3 100%
  );
  border-top: 1px solid var(--surface-divider-blue);
  padding-top: var(--space-section-compact);
  padding-bottom: 90px;
}
.page-cubussky .unlock-section {
  background-image: url("assets/images/aircraft-wallpaper.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-cubussky .unlock-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.34) 0%,
    rgba(10, 22, 40, 0.24) 100%
  );
  pointer-events: none;
}
.page-cubussky .workflow-section {
  overflow: hidden;
}
.page-cubussky .sky-aircraft {
  background-image: url("assets/images/aircraft-context.jpg");
  background-size: cover;
  background-position: center;
  padding-top: var(--space-section-tight);
  padding-bottom: var(--space-section-tight);
  position: relative;
  overflow: hidden;
  color: #1f2d3d;
}
.page-cubussky .sky-aircraft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0)
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.25)
  );
  pointer-events: none;
}
.page-cubussky .sky-aircraft > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubussky .sky-aircraft h2 {
  color: #1f2d3d;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  line-height: 1.15;
}
.page-cubussky .sky-aircraft h3 {
  color: #2b5aa6 !important;
  margin: 0 auto 14px;
  max-width: 560px;
  font-size: clamp(1.16rem, 1.45vw, 1.32rem);
  line-height: 1.3;
}
.page-cubussky .sky-aircraft .lead {
  color: #26374b;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.62;
  font-weight: 500;
}
.page-cubussky .mission-section {
}
.page-cubussky .impact-quote {
  padding-top: 68px;
  padding-bottom: 64px;
}
.page-cubussky .mission-section .two-col {
  align-items: center;
}
.page-cubussky .mission-section .two-col > div:first-child {
  max-width: 560px;
}
.page-cubussky .mission-data {
  position: relative;
  max-width: 620px;
  margin-left: auto;
}
.page-cubussky .mission-data img {
  width: 100%;
  height: auto;
}
.page-cubussky .impact-quote > .wrap {
  max-width: 900px;
}
.page-cubussky .impact-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 32px;
  border-left: 0;
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.16);
  font-size: clamp(1.38rem, 2vw, 1.58rem);
  line-height: 1.4;
  text-align: center;
}

.page-cubussky .sky-hero {
  background-image: url("assets/images/spacex-bg.jpg");
  min-height: clamp(350px, 50vh, 500px);
  padding-top: 78px;
  padding-bottom: 70px;
}
.page-cubussky .sky-hero::before {
  background: linear-gradient(
    rgba(8, 13, 25, 0.72),
    rgba(8, 13, 25, 0.66)
  );
}
.page-cubussky .sky-hero-layout {
  align-items: center;
  gap: clamp(36px, 5vw, 58px);
}
.page-cubussky .sky-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-cubussky .sky-hero h1 {
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  max-width: 12ch;
  text-wrap: balance;
}
.page-cubussky .sky-hero .lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 430px;
  font-weight: 500;
}
.page-cubussky .sky-hero-copy {
  max-width: 460px;
}
.page-cubussky .sky-hero-media {
  position: relative;
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 560px;
  margin-left: auto;
}
.page-cubussky .sky-support-cabin {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  transform: translateY(12px);
}
.page-cubussky .sky-support-device {
  width: 80%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  max-width: 110%;
  transform: translateY(-22px) scale(1.1);
  transform-origin: center center;
  justify-self: center;
  filter: drop-shadow(0 6px 12px rgba(10, 20, 38, 0.06));
}

.page-cubussky .workflow-section .workflow-diagram-shell img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.page-cubussky .workflow-section .workflow-diagram-shell {
  max-width: 1140px;
  background: var(--color-surface);
  border: 1px solid rgba(16, 28, 48, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 18px 22px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
}
.page-cubussky .workflow-section .workflow-intro {
  max-width: 980px;
  margin-bottom: 40px;
}
.page-cubussky .workflow-section .workflow-intro-title {
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 18px;
}
.page-cubussky .workflow-section .workflow-intro-text {
  max-width: 700px;
  margin: 0 auto;
  color: #5c6a7b;
}

.page-cubussky .wrap.center .lead,
.page-cubussky .wrap.center p,
.page-cubussky .two-col > div p {
  max-width: 760px;
}
.page-cubussky .wrap.center .lead,
.page-cubussky .wrap.center p {
  margin-left: auto;
  margin-right: auto;
}

.page-cubussky .card {
  background: var(--color-surface);
  border: 0;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: none;
  transition: none;
}
.page-cubussky .section-sky-suite .card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  object-position: center;
  margin: 0 0 12px;
}
.page-cubussky .card h3 {
  font-size: var(--text-body);
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
}
.page-cubussky .card p {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0;
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
}
.page-cubussky .card--feature {
  background: var(--color-surface);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 28px;
  border-radius: var(--radius-panel);
}
.page-cubussky .section-sky-suite .card--feature img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
}
.page-cubussky .card--feature h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
.page-cubussky .section-sky-suite .card--feature p {
  max-width: none;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
}
.page-cubussky .unlock-section .card h3 {
  margin-bottom: 11px;
  color: #1f2d3d;
}
.page-cubussky .unlock-section .card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(25, 39, 57, 0.86);
}
.page-cubussky .section-sky-suite .grid-3,
.page-cubussky .unlock-section .grid-4 {
  gap: var(--space-grid);
}

.page-cubussky .section-sky-suite .wrap.grid-3 {
  margin-top: 16px;
  gap: var(--space-grid-large);
}
.page-cubussky .section-sky-suite .wrap.center h2 {
  margin-bottom: 14px;
}
.page-cubussky .section-sky-suite .wrap.center .eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 6px;
}

.page-cubussky .unlock-section .wrap.grid-4 {
  max-width: 1060px;
  margin-top: 20px;
  gap: 24px;
}
.page-cubussky .unlock-section > .wrap {
  position: relative;
  z-index: 1;
}
.page-cubussky .unlock-section .wrap.center h2 {
  color: #11253e;
  margin-bottom: 16px;
}
.page-cubussky .unlock-section .wrap.center .lead {
  color: rgba(18, 38, 62, 0.92);
  max-width: 660px;
  line-height: 1.62;
  font-weight: 500;
}
.page-cubussky .unlock-section .card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 35, 64, 0.08);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}
.page-cubussky .mission-section .btn {
  min-width: 136px;
  padding: 12px 24px;
}

.page-cubussky .impact-carousel {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 44vw, 430px);
  isolation: isolate;
  display: block;
  width: 100%;
  padding: 0 !important;
}
.page-cubussky .impact-carousel::before {
  z-index: 1;
}
.page-cubussky .impact-carousel .impact-carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.page-cubussky .impact-carousel .impact-carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  will-change: opacity;
}
.page-cubussky .impact-carousel .impact-carousel-item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.page-cubussky .impact-carousel .impact-carousel-item .impact-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.page-cubussky .impact-carousel .impact-carousel-bg--glow {
  background-image: url("assets/images/abstract-glow.jpg");
}
.page-cubussky .impact-carousel .impact-carousel-bg--wing {
  background-image: url("assets/images/airplane-wing-slide.jpg");
}
.page-cubussky .impact-carousel .impact-carousel-item > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.page-cubussky .impact-carousel .impact-carousel-panel {
  width: min(740px, 100%);
  max-width: 740px;
  margin: 0;
  padding: 28px var(--space-grid-gap);
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-cubussky .impact-carousel .impact-carousel-panel blockquote {
  max-width: 690px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #182739;
  font-size: clamp(1.24rem, 1.85vw, 1.42rem);
  font-weight: 600;
  line-height: 1.42;
  text-align: center;
}
.page-cubussky .impact-carousel .impact-carousel-subtext {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  color: #2a3d55;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.page-cubussky .impact-carousel .impact-carousel-item[data-slide="1"] .impact-carousel-panel blockquote {
  max-width: 540px;
}
.page-cubussky .impact-carousel .impact-carousel-item[data-slide="1"] .impact-carousel-subtext {
  max-width: 650px;
}
.page-cubussky .impact-carousel .impact-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-cubussky .impact-carousel .impact-dot {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.page-cubussky .impact-carousel .impact-dot::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.4);
}
.page-cubussky .impact-carousel .impact-dot.is-active::before,
.page-cubussky .impact-carousel .impact-dot[aria-selected="true"]::before {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}
.page-cubussky .impact-carousel .impact-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.page-index .section:nth-of-type(5) .product-tile h3 {
  font-size: 1.18rem;
  line-height: 1.22;
}

.page-products-hub .products-hero {
  background-image: url("assets/images/cubusshop-hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.page-products-hub .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 30, 0.67) 0%, rgba(9, 16, 30, 0.56) 100%);
}
.page-products-hub .products-hero > .wrap {
  position: relative;
  z-index: 1;
}
.page-products-hub .products-hero .hero-content {
  max-width: 640px;
}
.page-products-hub .products-hero .products-context {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.page-products-hub .hero .overline,
.page-products-hub .products-hero .overline {
  margin-bottom: 8px;
}
.page-products-hub .products-hero h1 {
  margin: 0 0 11px;
  max-width: 13ch;
  color: #fff;
}
.page-products-hub .products-hero .lead {
  margin: 0;
  max-width: 64ch;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.93);
}
.page-products-hub .products-hero .products-ecosystem {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}
.page-products-hub .products-intro .lead {
  margin: 0 auto;
  max-width: 68ch;
}
.page-products-hub .products-grid {
  margin-top: var(--space-grid-gap);
  gap: 24px;
}
.page-products-hub .products-overview .eyebrow {
  margin-bottom: 10px;
}
.page-products-hub .products-overview .lead {
  max-width: 66ch;
  margin: 0 auto;
}
.page-products-hub .products-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border-color: #e9edf4;
  box-shadow: 0 4px 16px rgba(18, 30, 52, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.page-products-hub .products-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.page-products-hub .products-grid .card img {
  width: 100%;
  height: 184px;
  object-fit: contain;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #fcfdff 0%, #f9fbfd 100%);
  padding: 10px;
  border: 1px solid #f0f3f7;
  border-radius: 10px;
}
.page-products-hub .products-grid .card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.page-products-hub .products-grid .card .module-type {
  margin: 0 0 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #5f7190;
  font-weight: 600;
}
.page-products-hub .products-grid .card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(18, 32, 51, 0.84);
}
.page-products-hub .products-grid .card .module-link {
  margin-top: auto;
  align-self: flex-start;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 0;
  color: #243c80;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.page-products-hub .products-grid .card .module-link:hover,
.page-products-hub .products-grid .card .module-link:focus-visible {
  color: #1c3067;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.page-products-hub .products-grid .card .module-link span {
  transition: transform 160ms ease;
}
.page-products-hub .products-grid .card:hover .module-link span,
.page-products-hub .products-grid .card .module-link:hover span,
.page-products-hub .products-grid .card .module-link:focus-visible span {
  transform: translateX(2px);
}
.page-products-hub .products-cta {
  background: #f4f7fb;
}
.page-products-hub .products-cta h2 {
  max-width: 420px;
}
.page-products-hub .products-cta .lead {
  margin: 0;
  max-width: 58ch;
}
.page-products-hub .products-cta .two-col > div:last-child p {
  max-width: 480px;
}
.page-products-hub .products-cta .two-col > div:last-child .btn {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-inner {
    padding: 0 20px;
    justify-content: space-between;
  }
  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 58px;
    left: auto;
    transform: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    background: #fff;
    min-width: 180px;
  }
  .nav.show { display: flex; }
  .two-col, .two-col.reverse, .grid-3, .grid-4, .grid-6, .footer-grid { grid-template-columns: 1fr; }
  .page-cubussky .sky-hero-layout { grid-template-columns: 1fr; }
  .page-cubussky .sky-support-device { max-width: 100%; transform: none; }
  .page-cubussky .sky-support-cabin { transform: translateY(0); }
  .page-cubussky .sky-hero-copy {
    max-width: 500px;
  }
  .page-cubussky .sky-hero .lead {
    max-width: 34ch;
  }
  .page-cubussky .sky-hero-media {
    max-width: 100%;
    margin-left: 0;
  }
  .page-cubussky .impact-carousel {
    min-height: clamp(320px, 62vw, 420px);
  }
  .page-cubussky .impact-carousel .impact-carousel-item > .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-cubussky .impact-carousel .impact-carousel-panel {
    max-width: 760px;
    padding: 22px 20px;
    min-height: 0;
    gap: 10px;
  }
  .page-cubussky .impact-carousel .impact-carousel-subtext {
    font-size: 0.98rem;
    line-height: 1.52;
  }
  .page-cubussky .impact-carousel .impact-carousel-dots {
    bottom: 16px;
  }
  .page-cubussky .workflow-section .workflow-diagram-shell {
    padding: 16px;
  }
  .page-cubussky .workflow-section .workflow-diagram-shell img {
    width: 760px;
    max-width: none;
    min-width: 760px;
  }
  .hero { min-height: 64vh; padding: 78px 20px; }
  .page-index .hero {
    min-height: clamp(254px, 36vh, 344px);
    max-height: 344px;
    padding: 0;
  }
  .page-index .perceval-logos {
    flex-wrap: wrap;
    gap: 16px;
  }
  .page-index .perceval-logos img:first-child {
    width: min(46vw, 220px);
  }
  .page-index .perceval-logos img:last-child {
    width: min(30vw, 128px);
  }
  .page-index .perceval-x {
    font-size: 30px;
  }
  .page-index .hero-bg-video {
    object-position: center 74%;
  }
  .page-index .hero .hero-overlay {
    width: min(94%, 720px);
    padding: 16px 14px;
  }
  .logo-header { height: 42px; width: auto; }
  .section, .section.display, .section.compact, .section.tight {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .section.band { min-height: 280px; }
  .page-index .retail-stack {
    display: flex;
    align-items: flex-end;
    min-height: clamp(424px, 110vw, 532px);
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 24px 22px 20px;
  }
  .page-index .retail-stack::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.2) 24%,
      rgba(0, 0, 0, 0.44) 68%,
      rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: inherit;
  }
  .page-index .retail-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
  .page-index .retail-card {
    position: relative;
    width: min(100%, 360px);
    max-width: 360px;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
  }
  .page-index .retail-card h2 {
    margin-bottom: 10px;
  }
  .page-index .retail-card .lead {
    max-width: 34ch;
    margin-bottom: 8px;
    line-height: 1.55;
  }
  .page-index .retail-card .lead:last-of-type {
    margin-bottom: 12px;
  }
  .page-index .retail-card .btn {
    min-height: 44px;
    margin-top: 0;
    padding: 10px 0;
  }
  .page-index .dash {
    width: 60px;
    height: 2px;
    margin: 8px auto 14px;
    font-size: 0;
    line-height: 0;
    background: rgba(16, 20, 24, 0.42);
  }
  .page-index .payment-cards .card {
    padding: 16px;
  }
  .page-index .index-suite .product-tile {
    min-height: 0;
    padding: 30px 24px;
  }
  .page-index .index-suite .grid-6 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-index .index-about .two-col,
  .page-index .security-grid,
  .page-index .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-index .security-side {
    padding-right: 0;
  }
  .page-index .security-grid {
    gap: 22px;
  }
  .page-index .security-copy {
    gap: 0;
  }
  .page-index .security-copy .lead,
  .page-index .security-grid .list {
    max-width: 34ch;
  }
  .page-index .security-grid .list li {
    margin-bottom: 18px;
    padding-left: 20px;
    line-height: 1.68;
  }
  .footer-nav {
    text-align: left;
    font-size: 20px;
  }
  .site-footer {
    padding: 34px 0 28px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-grid .center p {
    margin: 0 0 10px;
  }
  .footer-links {
    gap: 6px;
  }
  .site-footer .footer-nav .footer-social {
    margin-top: 20px;
  }
  .site-footer .footer-social {
    justify-content: flex-start;
  }
  .footer-grid .logo {
    width: 144px;
  }
  .page-index .index-about .about-media {
    height: 360px;
  }
  .page-about .about-story-layout,
  .page-about .about-contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-about .about-media-panel,
  .page-about .about-video {
    min-height: 340px;
  }
  .page-about .about-accent-image {
    position: static;
    width: min(220px, 55%);
    margin-top: 14px;
    margin-left: auto;
  }
  .page-blog .blog-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .page-index .index-security h2 {
    margin-bottom: 20px;
  }
  .page-index .security-copy .btn {
    margin-top: 14px;
  }
  .page-products-hub .products-hero .lead {
    max-width: 38ch;
  }
  .page-contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-contact .contact-details,
  .page-contact .contact-form-panel {
    max-width: none;
  }
  .page-products-hub .products-hero .products-ecosystem {
    max-width: 34ch;
    line-height: 1.6;
  }
  .page-products-hub .products-intro .lead,
  .page-products-hub .products-overview .lead {
    max-width: 38ch;
  }
  .page-products-hub .products-grid {
    gap: 18px;
  }
  .page-products-hub .products-grid .card {
    padding: 20px;
  }
  .page-products-hub .products-grid .card img {
    height: 172px;
    margin-bottom: 12px;
    padding: 12px;
  }
  .page-products-hub .products-grid .card p {
    max-width: 34ch;
  }
  .page-products-hub .products-grid .card .module-link {
    margin-top: 14px;
  }
  .page-products-hub .products-cta .two-col {
    gap: 28px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    height: 60px;
    padding: 0 16px;
  }
  .logo-header {
    height: 36px;
  }
  .nav {
    right: 16px;
    top: 54px;
  }
  .page-index .hero {
    min-height: clamp(286px, 78vw, 348px);
    max-height: 348px;
  }
  .page-index .hero-bg-video {
    object-position: center 72%;
  }
  .page-index .hero .hero-overlay {
    top: 50%;
    width: min(90%, 420px);
    padding: 10px 4px;
  }
  .page-index .hero .hero-overlay h1 {
    max-width: 10.5ch;
    font-size: clamp(2.2rem, 8vw, 2.55rem);
    line-height: 1.1;
    letter-spacing: -0.028em;
    margin-bottom: 12px;
  }
  .page-index .hero .hero-overlay .lead {
    max-width: 33ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }
  .page-contact .contact-form-panel {
    padding: 22px 18px;
  }
  .page-contact .contact-form textarea {
    min-height: 152px;
  }
  .page-index .index-perceval {
    padding-top: 36px;
    padding-bottom: 38px;
  }
  .page-index .index-perceval h2 {
    font-size: clamp(1.55rem, 6.3vw, 1.9rem);
    margin-bottom: 10px;
  }
  .page-index .perceval-text {
    max-width: 34ch;
    line-height: 1.6;
  }
  .page-index .perceval-logos {
    gap: 12px;
    margin-top: 18px;
  }
  .page-index .perceval-logos img:first-child {
    width: min(34vw, 148px);
  }
  .page-index .perceval-logos img:last-child {
    width: min(24vw, 92px);
  }
  .page-index .perceval-x {
    font-size: 22px;
  }
  .page-index .retail-stack {
    min-height: clamp(440px, 124vw, 552px);
    padding: 22px 18px 18px;
  }
  .page-index .retail-card {
    width: 100%;
    max-width: 320px;
  }
  .page-index .retail-card h2 {
    margin-bottom: 8px;
  }
  .page-index .retail-card .lead {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.54;
    margin-bottom: 7px;
  }
  .page-index .retail-card .lead:last-of-type {
    margin-bottom: 12px;
  }
  .page-index .retail-card .btn {
    margin-top: 0;
  }
  .page-index .payment-cards .card {
    padding: 14px;
  }
  .page-index .index-suite .product-tile {
    padding: 26px 20px;
  }
  .page-index .index-suite .product-tile img {
    height: 120px;
    margin-bottom: 14px;
  }
  .page-index .security-grid {
    gap: 20px;
  }
  .page-index .security-grid .list li {
    margin-bottom: 16px;
  }
  .site-footer {
    padding: 30px 0 24px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-nav {
    font-size: 18px;
  }
  .footer-grid .logo {
    width: 136px;
  }
  .page-products-hub .products-hero h1 {
    max-width: 11ch;
  }
  .page-cubussky .workflow-section .workflow-diagram-shell {
    padding: 14px;
  }
  .page-cubussky .workflow-section .workflow-diagram-shell img {
    width: 720px;
    min-width: 720px;
  }
  .page-products-hub .products-hero .lead {
    max-width: 34ch;
    font-size: 1.02rem;
    line-height: 1.56;
  }
  .page-products-hub .products-hero .products-ecosystem,
  .page-products-hub .products-intro .lead,
  .page-products-hub .products-overview .lead {
    max-width: 32ch;
  }
  .page-products-hub .products-grid {
    gap: 16px;
  }
  .page-products-hub .products-grid .card {
    padding: 18px;
  }
  .page-products-hub .products-grid .card img {
    height: 164px;
    padding: 10px;
  }
  .page-products-hub .products-grid .card .module-link {
    margin-top: 12px;
  }
  .page-products-hub .products-cta .two-col {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .hero-bg-video {
    display: none;
  }
}
@media (max-width: 900px) {
  .page-cubusgo .go-hero,
  .page-cubusgo .go-intro,
  .page-cubusgo .go-components,
  .page-cubusgo .go-benefits {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .page-cubusgo .go-components .card--feature img {
    height: 100px;
  }
  .page-cubusstar .star-hero,
  .page-cubusstar .star-intro,
  .page-cubusstar .star-features {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .page-cubusstar .star-hero .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-cubusstar .star-hero img {
    margin: 0 auto;
  }
  .page-cubusstar .star-intro .lead {
    max-width: 66ch;
  }
  .page-cubusstar .star-overview-wrap {
    margin-top: 20px;
  }
  .page-cubusstar .star-features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-grid);
  }
  .page-cubusshop .shop-hero,
  .page-cubusshop .shop-values,
  .page-cubusshop .shop-seamless,
  .page-cubusshop .shop-handover,
  .page-cubusshop .shop-reach,
  .page-cubusshop .shop-whitelabel {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .page-cubusshop .shop-values .two-col,
  .page-cubusshop .shop-seamless .two-col,
  .page-cubusshop .shop-handover .two-col,
  .page-cubusshop .shop-reach .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-cubusshop .shop-value-block {
    padding: 22px 22px;
  }
  .page-cubusshop .shop-reach img,
  .page-cubusshop .shop-handover img,
  .page-cubusshop .shop-seamless img {
    margin: 0 auto;
  }
  .page-cubusshop .shop-whitelabel-media {
    margin-top: 14px;
  }
  .page-cubussense .sense-hero,
  .page-cubussense .sense-intro,
  .page-cubussense .sense-sustainability,
  .page-cubussense .sense-closing {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .page-cubussense .sense-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-cubussense .sense-hero-visual,
  .page-cubussense .sense-hero-visual img {
    justify-self: start;
    margin: 0;
  }
  .page-cubussense .sense-hero-visual img {
    width: min(360px, 100%);
  }
  .page-cubussense .sense-intro-copy {
    max-width: none;
  }
  .page-cubussense .sense-sustainability-grid,
  .page-cubussense .sense-closing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-grid);
  }
  .page-cubuspos .pos-hero,
  .page-cubuspos .pos-phone-strip,
  .page-cubuspos .pos-banner,
  .page-cubuspos .pos-closing {
    padding-top: var(--space-section-tight);
    padding-bottom: var(--space-section-tight);
  }
  .section-two-column {
    padding-top: 64px;
    padding-bottom: var(--space-section-tight);
  }
  .section-two-column__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-cubuspos .pos-phone-strip {
    height: clamp(180px, 42vw, 260px);
    min-height: 180px;
    margin-top: 8px;
    margin-bottom: 10px;
  }
  .page-cubuspos .pos-orc {
  }
  .page-cubuspos .pos-orc .lead {
    max-width: 34ch;
  }
  .page-cubuspos .pos-orc .two-col {
    gap: 30px;
  }
  .page-cubuspos .pos-orc-copy,
  .page-cubuspos .pos-orc-media {
    justify-self: start;
  }
  .page-cubuspos .pos-orc img {
    width: min(220px, 70vw);
    max-width: 220px;
  }
  .page-cubuspos .pos-features {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .page-cubuspos .pos-features .wrap.center {
    margin-bottom: 18px;
  }
  .page-cubuspos .pos-features .card {
    padding: 20px;
  }
  .page-privacypol .privacy-hero {
    min-height: 300px;
    padding-top: 64px;
    padding-bottom: 56px;
  }
}
