:root {
  color-scheme: dark;
  --brand-bg: #05070c;
  --brand-bg-soft: #090e18;
  --brand-panel: rgba(12, 19, 33, 0.72);
  --brand-panel-strong: rgba(9, 15, 27, 0.9);
  --brand-border: rgba(165, 186, 220, 0.17);
  --brand-border-active: rgba(91, 204, 255, 0.42);
  --brand-text: #f7f9fc;
  --brand-muted: #a9b5c8;
  --brand-muted-light: #ced6e4;
  --brand-cyan: #4bd3ff;
  --brand-blue: #5687ff;
  --brand-violet: #a78bfa;
  --brand-green: #64e6be;
  --brand-orange: #ffb56b;
  --brand-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --brand-radius-sm: 0.75rem;
  --brand-radius: 1.2rem;
  --brand-radius-lg: 1.8rem;
  --brand-container: 1180px;
  --brand-header: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(75, 211, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 90% 34%, rgba(167, 139, 250, 0.08), transparent 30rem),
    var(--brand-bg);
  color: var(--brand-text);
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

::selection {
  background: rgba(75, 211, 255, 0.28);
  color: var(--brand-text);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--brand-text);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

h4 {
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--brand-muted);
}

:focus-visible {
  outline: 3px solid rgba(75, 211, 255, 0.78);
  outline-offset: 4px;
}

.b-skip {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  background: var(--brand-text);
  color: var(--brand-bg);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.b-skip:focus {
  transform: translateY(0);
}

.b-container {
  width: min(calc(100% - 2.5rem), var(--brand-container));
  margin-inline: auto;
}

.b-narrow {
  width: min(calc(100% - 2.5rem), 820px);
  margin-inline: auto;
}

.b-section {
  position: relative;
  padding: 7rem 0;
}

.b-section-compact {
  padding: 5rem 0;
}

.b-section-dark {
  background: rgba(2, 5, 10, 0.34);
}

.b-section-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.b-section-bg::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, var(--brand-bg), rgba(5, 7, 12, 0.76), var(--brand-bg)),
    url("../img/bg.jpg") center / cover;
  content: "";
  opacity: 0.78;
}

.b-section-heading {
  display: flex;
  margin-bottom: 2.7rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.b-section-heading > div {
  max-width: 760px;
}

.b-section-heading p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.b-eyebrow {
  display: inline-flex;
  margin-bottom: 1.05rem;
  align-items: center;
  gap: 0.6rem;
  color: #a9e9ff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b-eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet));
  content: "";
}

.b-gradient-text {
  background: linear-gradient(108deg, #fff 4%, #c5efff 48%, #cabdff 94%);
  background-clip: text;
  color: transparent;
}

.b-glass {
  border: 1px solid var(--brand-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    var(--brand-panel);
  box-shadow: var(--brand-shadow);
  backdrop-filter: blur(18px);
}

.b-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--brand-header);
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.b-header.is-scrolled {
  border-color: var(--brand-border);
  background: rgba(5, 7, 12, 0.84);
  backdrop-filter: blur(20px);
}

.b-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.b-brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1.03rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.b-brand-lab {
  margin-left: 0.32rem;
  color: #91e1ff;
  font-size: 0.68em;
  letter-spacing: 0.14em;
}

.b-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.b-nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.b-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.b-nav-link {
  position: relative;
  color: var(--brand-muted-light);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.b-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet));
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.b-nav-link:hover,
.b-nav-link[aria-current="page"] {
  color: var(--brand-text);
}

.b-nav-link:hover::after,
.b-nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.b-nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: -0.8rem;
  z-index: 120;
  display: grid;
  min-width: 255px;
  padding: 0.55rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.9rem;
  opacity: 0;
  background: rgba(8, 13, 24, 0.96);
  box-shadow: var(--brand-shadow);
  transform: translateY(-0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.b-nav-dropdown-small {
  min-width: 150px;
}

.b-nav-item:hover .b-nav-dropdown,
.b-nav-item:focus-within .b-nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.b-nav-dropdown a {
  padding: 0.58rem 0.65rem;
  border-radius: 0.55rem;
  color: var(--brand-muted-light);
  font-size: 0.78rem;
  font-weight: 740;
}

.b-nav-dropdown a:hover,
.b-nav-dropdown a[aria-current="page"] {
  background: rgba(75, 211, 255, 0.09);
  color: var(--brand-text);
}

.b-language {
  display: flex;
  padding: 0.18rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.68rem;
  background: rgba(255, 255, 255, 0.035);
}

.b-language button {
  min-width: 2rem;
  padding: 0.34rem 0.38rem;
  border: 0;
  border-radius: 0.44rem;
  background: transparent;
  color: var(--brand-muted);
  font-size: 0.66rem;
  font-weight: 850;
}

.b-language button:hover,
.b-language button.is-active {
  color: var(--brand-text);
}

.b-language button.is-active {
  background: rgba(75, 211, 255, 0.14);
}

.b-header-cta {
  min-height: 2.55rem;
  padding: 0.55rem 0.85rem;
}

.b-menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid var(--brand-border);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.b-menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--brand-text);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.b-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

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

.b-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.b-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.b-button {
  display: inline-flex;
  min-height: 3.1rem;
  padding: 0.75rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.b-button:hover {
  transform: translateY(-2px);
}

.b-button-primary {
  border-color: rgba(75, 211, 255, 0.42);
  background: linear-gradient(125deg, rgba(11, 169, 222, 0.94), rgba(91, 92, 230, 0.94));
  box-shadow: 0 14px 38px rgba(25, 159, 220, 0.2);
  color: #fff;
}

.b-button-primary:hover {
  box-shadow: 0 18px 46px rgba(25, 159, 220, 0.3);
}

.b-button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.b-button-secondary:hover {
  border-color: var(--brand-border-active);
  background: rgba(255, 255, 255, 0.075);
}

.b-button svg,
.b-text-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 160ms ease;
}

.b-button:hover svg,
.b-text-link:hover svg {
  transform: translateX(3px);
}

.b-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #b8ebff;
  font-size: 0.88rem;
  font-weight: 800;
}

.b-hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  padding: calc(var(--brand-header) + 4rem) 0 5rem;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.b-hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("../img/hero-bg.jpg") center / cover;
  content: "";
}

.b-hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96) 0%, rgba(5, 7, 12, 0.76) 48%, rgba(5, 7, 12, 0.26) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.28), var(--brand-bg) 100%);
  content: "";
}

.b-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.b-hero-copy {
  position: relative;
  z-index: 2;
}

.b-hero-copy h1 {
  font-size: clamp(3rem, 4.4vw, 4.2rem);
}

.b-hero-copy > p {
  max-width: 690px;
  margin-bottom: 1.9rem;
  color: #c4cddb;
  font-size: clamp(1.03rem, 1.6vw, 1.17rem);
}

.b-hero-copy > .b-hero-subcopy {
  margin-top: -1rem;
  color: #d7deea;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
}

.b-capability-canvas {
  position: relative;
  min-height: 520px;
}

.b-capability-canvas::before {
  position: absolute;
  inset: 12% -10% 0 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 211, 255, 0.24), rgba(167, 139, 250, 0.1) 44%, transparent 70%);
  content: "";
  filter: blur(25px);
}

.b-mockup {
  position: absolute;
  overflow: hidden;
  border-radius: 1rem;
}

.b-mockup-bar {
  display: flex;
  padding: 0.72rem 0.85rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--brand-border);
  color: var(--brand-muted-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b-mockup-dots {
  display: flex;
  gap: 0.28rem;
}

.b-mockup-dots span {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.b-dashboard-mockup {
  z-index: 1;
  top: 3%;
  right: 1%;
  width: 82%;
  padding-bottom: 1rem;
  transform: perspective(1200px) rotateY(-5deg);
}

.b-dashboard-metrics {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
}

.b-dashboard-metric {
  padding: 0.7rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.62rem;
  background: rgba(255, 255, 255, 0.025);
}

.b-dashboard-metric span,
.b-dashboard-metric strong {
  display: block;
}

.b-dashboard-metric span {
  color: var(--brand-muted);
  font-size: 0.62rem;
}

.b-dashboard-metric strong {
  margin-top: 0.2rem;
  font-size: 0.82rem;
}

.b-dashboard-body {
  display: grid;
  gap: 0.6rem;
  padding: 0 0.85rem;
  grid-template-columns: 1.35fr 0.65fr;
}

.b-chart {
  position: relative;
  min-height: 115px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 0.7rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(2, 6, 12, 0.45);
  background-size: 28px 28px;
}

.b-chart svg {
  position: absolute;
  inset: 15% 5% 8%;
  width: 90%;
  height: 77%;
  fill: none;
  stroke: url("#chartGradient");
  stroke-width: 2;
}

.b-activity {
  display: grid;
  gap: 0.42rem;
}

.b-activity-row {
  display: flex;
  padding: 0.5rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.022);
  color: var(--brand-muted);
  font-size: 0.58rem;
}

.b-activity-row::before {
  width: 0.42rem;
  height: 0.42rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-green);
  content: "";
  box-shadow: 0 0 10px rgba(100, 230, 190, 0.6);
}

.b-mobile-mockup {
  z-index: 3;
  right: 4%;
  bottom: 2%;
  width: 150px;
  height: 300px;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.85rem;
  background: #070a10;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  transform: rotate(4deg);
}

.b-mobile-screen {
  position: relative;
  height: 100%;
  padding: 2rem 0.65rem 0.7rem;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 20% 5%, rgba(75, 211, 255, 0.2), transparent 28%),
    linear-gradient(160deg, #101c31, #080b13);
}

.b-mobile-screen::before {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 3.4rem;
  height: 0.75rem;
  border-radius: 1rem;
  background: #05070c;
  content: "";
  transform: translateX(-50%);
}

.b-mobile-title {
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.b-mobile-card {
  margin-bottom: 0.45rem;
  padding: 0.55rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--brand-muted);
  font-size: 0.56rem;
}

.b-mobile-card strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--brand-text);
  font-size: 0.64rem;
}

.b-mobile-nav {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  left: 0.55rem;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(3, 1fr);
}

.b-mobile-nav span {
  height: 1.25rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.38rem;
  background: rgba(255, 255, 255, 0.03);
}

.b-workflow-mockup {
  z-index: 2;
  bottom: 7%;
  left: 0;
  width: 69%;
  padding-bottom: 0.85rem;
  transform: rotate(-2deg);
}

.b-workflow-stages {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  grid-template-columns: repeat(4, 1fr);
}

.b-workflow-stage {
  position: relative;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--brand-muted-light);
  font-size: 0.55rem;
  font-weight: 750;
  text-align: center;
}

.b-workflow-stage:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -0.38rem;
  width: 0.38rem;
  height: 1px;
  background: var(--brand-cyan);
  content: "";
}

.b-workflow-stage.is-active {
  border-color: rgba(75, 211, 255, 0.34);
  background: rgba(75, 211, 255, 0.08);
}

.b-signal-strip {
  position: relative;
  z-index: 3;
  margin-top: -1.7rem;
}

.b-signal-grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--brand-radius);
  grid-template-columns: repeat(4, 1fr);
}

.b-signal-item {
  padding: 1.15rem 1.25rem;
  border-right: 1px solid var(--brand-border);
}

.b-signal-item:last-child {
  border-right: 0;
}

.b-signal-item strong,
.b-signal-item span {
  display: block;
}

.b-signal-item strong {
  margin-bottom: 0.15rem;
  font-size: 0.86rem;
}

.b-signal-item span {
  color: var(--brand-muted);
  font-size: 0.75rem;
}

.b-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.b-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.b-card {
  padding: 1.4rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.b-card:hover {
  border-color: var(--brand-border-active);
  background-color: rgba(255, 255, 255, 0.025);
  transform: translateY(-4px);
}

.b-card-icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid rgba(75, 211, 255, 0.22);
  border-radius: 0.76rem;
  background: linear-gradient(135deg, rgba(75, 211, 255, 0.12), rgba(167, 139, 250, 0.1));
  color: #afeaff;
}

.b-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.b-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.b-service-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
}

.b-service-card .b-text-link {
  margin-top: auto;
  padding-top: 1.2rem;
}

.b-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.b-tag {
  display: inline-flex;
  padding: 0.32rem 0.5rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--brand-muted-light);
  font-size: 0.65rem;
  font-weight: 700;
}

.b-split {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.b-split-copy p {
  max-width: 590px;
}

.b-principle-list {
  display: grid;
  gap: 0.7rem;
}

.b-principle {
  display: grid;
  padding: 1rem;
  align-items: start;
  gap: 0.8rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: auto 1fr;
}

.b-principle-index {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid rgba(75, 211, 255, 0.25);
  border-radius: 0.5rem;
  background: rgba(75, 211, 255, 0.07);
  color: #aceaff;
  font-size: 0.65rem;
  font-weight: 850;
}

.b-principle p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.b-delivery-map {
  padding: 1.5rem;
  border-radius: var(--brand-radius-lg);
}

.b-delivery-flow {
  position: relative;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, 1fr);
}

.b-delivery-flow::before {
  position: absolute;
  top: 1.3rem;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-violet));
  content: "";
  opacity: 0.45;
}

.b-delivery-step {
  position: relative;
  z-index: 2;
}

.b-delivery-step span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  place-items: center;
  border: 1px solid var(--brand-border-active);
  border-radius: 0.72rem;
  background: var(--brand-panel-strong);
  color: #afeaff;
  font-size: 0.72rem;
  font-weight: 850;
}

.b-delivery-step p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.b-product-feature {
  display: grid;
  padding: clamp(1.6rem, 4.5vw, 3.5rem);
  overflow: hidden;
  border-radius: var(--brand-radius-lg);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.b-product-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.b-product-copy p {
  max-width: 550px;
  margin-bottom: 1.7rem;
}

.b-product-stage {
  position: relative;
  min-height: 380px;
}

.b-product-stage::before {
  position: absolute;
  inset: 8% 0 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 211, 255, 0.21), rgba(167, 139, 250, 0.09) 45%, transparent 70%);
  content: "";
  filter: blur(20px);
}

.b-product-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 345px;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: #070a10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.b-product-phone:first-child {
  z-index: 1;
  transform: translate(-85%, -48%) rotate(-7deg) scale(0.9);
}

.b-product-phone:last-child {
  z-index: 2;
  transform: translate(-17%, -52%) rotate(5deg);
}

.b-product-phone img {
  width: 100%;
  height: 100%;
  border-radius: 1.62rem;
  object-fit: cover;
}

.b-cta {
  display: grid;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  align-items: center;
  gap: 2rem;
  border-radius: var(--brand-radius-lg);
  grid-template-columns: 1fr auto;
}

.b-cta > * {
  min-width: 0;
}

.b-cta h2 {
  overflow-wrap: anywhere;
}

.b-cta p {
  max-width: 680px;
  margin-bottom: 0;
}

.b-page-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  padding: calc(var(--brand-header) + 5rem) 0 5rem;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--brand-border);
  isolation: isolate;
}

.b-page-hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("../img/bg.jpg") center / cover;
  content: "";
}

.b-page-hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96), rgba(5, 7, 12, 0.73) 54%, rgba(5, 7, 12, 0.34)),
    linear-gradient(180deg, rgba(5, 7, 12, 0.3), var(--brand-bg));
  content: "";
}

.b-page-hero-copy {
  max-width: 830px;
}

.b-page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.b-page-hero-copy > p {
  max-width: 700px;
  margin-bottom: 1.8rem;
  color: #c6cfdd;
  font-size: 1.08rem;
}

.b-service-detail-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}

.b-service-detail {
  padding: 1.6rem;
  border-radius: var(--brand-radius);
}

.b-service-detail ul,
.b-check-list,
.b-plain-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--brand-muted);
  list-style: none;
}

.b-service-detail li,
.b-check-list li,
.b-plain-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.86rem;
}

.b-service-detail li::before,
.b-check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-green);
  content: "";
  box-shadow: 0 0 9px rgba(100, 230, 190, 0.5);
}

.b-plain-list li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 0.45rem;
  height: 1px;
  background: var(--brand-cyan);
  content: "";
}

.b-fit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.b-fit-card {
  padding: 1.5rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.025);
}

.b-fit-card.is-muted {
  background: rgba(255, 255, 255, 0.012);
}

.b-fit-card p {
  margin-bottom: 0;
}

.b-model-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.b-model-card {
  min-height: 250px;
  padding: 1.7rem;
  border-radius: var(--brand-radius-lg);
}

.b-model-card p {
  margin-bottom: 0;
}

.b-lifecycle {
  display: grid;
  gap: 0.8rem;
  counter-reset: lifecycle;
  grid-template-columns: repeat(5, 1fr);
}

.b-lifecycle-step {
  padding: 1.2rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.025);
  counter-increment: lifecycle;
}

.b-lifecycle-step::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border: 1px solid rgba(75, 211, 255, 0.26);
  border-radius: 0.55rem;
  background: rgba(75, 211, 255, 0.07);
  color: #afeaff;
  content: counter(lifecycle, decimal-leading-zero);
  font-size: 0.67rem;
  font-weight: 850;
}

.b-lifecycle-step p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.b-tech-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, 1fr);
}

.b-tech-item {
  padding: 0.95rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.025);
}

.b-tech-item strong,
.b-tech-item span {
  display: block;
}

.b-tech-item strong {
  font-size: 0.82rem;
}

.b-tech-item span {
  margin-top: 0.18rem;
  color: var(--brand-muted);
  font-size: 0.7rem;
}

.b-contact-grid {
  display: grid;
  align-items: start;
  gap: 1.2rem;
  grid-template-columns: 0.92fr 1.08fr;
}

.b-contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--brand-radius-lg);
}

.b-contact-email {
  display: inline-flex;
  margin: 0.5rem 0 1.5rem;
  color: #b9ecff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  word-break: break-word;
}

.b-contact-note {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.b-inquiry-list {
  display: grid;
  gap: 0.7rem;
}

.b-inquiry-item {
  display: grid;
  padding: 0.95rem;
  align-items: start;
  gap: 0.8rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.024);
  grid-template-columns: auto 1fr;
}

.b-inquiry-item span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid rgba(75, 211, 255, 0.25);
  border-radius: 0.48rem;
  color: #afeaff;
  font-size: 0.63rem;
  font-weight: 850;
}

.b-inquiry-item p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.b-section-tight {
  padding-block: 4rem;
}

.b-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.b-service-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: var(--brand-radius);
}

.b-service-anchor-nav a {
  display: inline-flex;
  padding: 0.58rem 0.78rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.62rem;
  color: var(--brand-muted-light);
  font-size: 0.78rem;
  font-weight: 760;
}

.b-service-anchor-nav a:hover {
  border-color: var(--brand-border-active);
  color: var(--brand-text);
}

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

.b-service-band {
  display: grid;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  align-items: start;
  gap: 2rem;
  border-radius: var(--brand-radius-lg);
  scroll-margin-top: calc(var(--brand-header) + 1rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.66fr);
}

.b-service-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.b-mini-card-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
}

.b-mini-card {
  display: block;
  padding: 1.1rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.024);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.b-mini-card:hover {
  border-color: var(--brand-border-active);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-3px);
}

.b-mini-card strong,
.b-mini-card span {
  display: block;
}

.b-mini-card strong {
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.b-mini-card span {
  color: var(--brand-muted);
  font-size: 0.76rem;
}

.b-architecture-stack {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--brand-radius-lg);
}

.b-architecture-stack div {
  display: grid;
  padding: 1rem;
  align-items: start;
  gap: 0.35rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.026);
  grid-template-columns: auto 1fr;
}

.b-architecture-stack span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(75, 211, 255, 0.25);
  border-radius: 0.55rem;
  color: #afeaff;
  font-size: 0.64rem;
  font-weight: 850;
}

.b-architecture-stack strong {
  font-size: 0.96rem;
}

.b-architecture-stack p {
  grid-column: 2;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.b-process-grid {
  display: grid;
  gap: 0.85rem;
  counter-reset: lifecycle;
  grid-template-columns: repeat(3, 1fr);
}

.b-showcase-card {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  border-radius: var(--brand-radius-lg);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.b-showcase-copy p {
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.b-showcase-visual {
  display: grid;
  align-items: center;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.55fr);
}

.b-device-row {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.b-device-row::before {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 211, 255, 0.21), rgba(167, 139, 250, 0.09) 45%, transparent 70%);
  content: "";
  filter: blur(20px);
}

.b-device-row-overlap .b-device-phone:first-child {
  transform: rotate(-7deg) translateX(1.2rem) scale(0.92);
}

.b-device-row-overlap .b-device-phone:last-child {
  z-index: 2;
  transform: rotate(5deg) translateX(-1.2rem);
}

.b-device-phone {
  position: relative;
  z-index: 1;
  width: 172px;
  height: 348px;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  background: #070a10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.b-device-phone-large {
  width: 190px;
  height: 386px;
}

.b-device-phone img {
  width: 100%;
  height: 100%;
  border-radius: 1.62rem;
  object-fit: cover;
}

.b-device-gallery {
  display: grid;
  gap: 1rem;
  align-items: start;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.b-device-gallery .b-device-phone {
  width: 100%;
  max-width: 185px;
  height: auto;
  aspect-ratio: 0.49;
  margin: 0;
}

.b-qr-card {
  display: grid;
  padding: 1rem;
  gap: 0.85rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.035);
}

.b-qr-image {
  width: min(100%, 180px);
  border-radius: 0.7rem;
  background: #fff;
}

.b-qr-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.b-qr-card p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.b-ios-note {
  display: none;
  margin: 0.85rem 0 0;
  color: var(--brand-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.b-ios-note.is-visible {
  display: block;
}

.b-app-hero {
  min-height: min(820px, 100svh);
}

.b-app-hero-visual {
  position: relative;
}

.b-app-download {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  gap: 2rem;
  border-radius: var(--brand-radius-lg);
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.35fr);
}

.b-link-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.b-link-card {
  display: flex;
  padding: 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.025);
}

.b-link-card strong,
.b-link-card span span {
  display: block;
}

.b-link-card span span {
  color: var(--brand-muted);
  font-size: 0.8rem;
}

.b-link-card svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.b-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.b-topic-chips span {
  padding: 0.38rem 0.62rem;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-muted-light);
  font-size: 0.72rem;
  font-weight: 760;
}

.b-mail-composer {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--brand-radius-lg);
}

.b-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.b-field {
  display: grid;
  gap: 0.4rem;
  color: var(--brand-muted-light);
  font-size: 0.78rem;
  font-weight: 780;
}

.b-field input,
.b-field textarea,
.b-field select {
  width: 100%;
  border: 1px solid var(--brand-border);
  border-radius: 0.78rem;
  background: rgba(4, 8, 15, 0.7);
  color: var(--brand-text);
  font: inherit;
}

.b-field input,
.b-field select {
  min-height: 3rem;
  padding: 0 0.85rem;
}

.b-field textarea {
  min-height: 9rem;
  padding: 0.85rem;
  resize: vertical;
}

.b-field input:focus,
.b-field textarea:focus,
.b-field select:focus {
  border-color: var(--brand-border-active);
  outline: 0;
}

.b-footer {
  border-top: 1px solid var(--brand-border);
  background: rgba(3, 5, 9, 0.82);
}

.b-footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0 3rem;
  grid-template-columns: 1.45fr repeat(3, 0.6fr);
}

.b-footer-brand p {
  max-width: 450px;
  margin: 1rem 0 1.1rem;
  font-size: 0.88rem;
}

.b-footer-email {
  color: #b8ebff;
  font-size: 0.84rem;
  font-weight: 750;
}

.b-footer-column h3 {
  margin-bottom: 1rem;
  color: var(--brand-muted-light);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.b-footer-links {
  display: grid;
  gap: 0.62rem;
}

.b-footer-links a {
  color: var(--brand-muted);
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.b-footer-links a:hover {
  color: var(--brand-text);
}

.b-footer-bottom {
  display: flex;
  padding: 1.25rem 0 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--brand-border);
  color: var(--brand-muted);
  font-size: 0.76rem;
}

.b-back-to-top {
  position: fixed;
  z-index: 80;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--brand-border-active);
  border-radius: 0.8rem;
  opacity: 0;
  background: rgba(8, 13, 23, 0.88);
  color: var(--brand-text);
  transform: translateY(1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
  backdrop-filter: blur(14px);
}

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

.b-back-to-top svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .b-nav {
    position: fixed;
    top: calc(var(--brand-header) - 0.25rem);
    right: 1.25rem;
    left: 1.25rem;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--brand-border);
    border-radius: var(--brand-radius);
    opacity: 0;
    background: rgba(5, 8, 15, 0.96);
    box-shadow: var(--brand-shadow);
    transform: translateY(-0.6rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    visibility: hidden;
    backdrop-filter: blur(20px);
  }

  .b-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .b-nav-links {
    display: grid;
    gap: 0.1rem;
  }

  .b-nav-item {
    display: grid;
  }

  .b-nav-link {
    padding: 0.68rem 0.55rem;
  }

  .b-nav-link::after {
    display: none;
  }

  .b-nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0.1rem 0 0.5rem;
    padding: 0.35rem;
    opacity: 1;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .b-nav-dropdown a {
    padding: 0.45rem 0.55rem;
  }

  .b-language {
    width: 100%;
  }

  .b-language button {
    flex: 1;
  }

  .b-header-cta {
    width: 100%;
  }

  .b-menu-toggle {
    display: block;
  }

  .b-hero {
    min-height: auto;
    padding-top: calc(var(--brand-header) + 5rem);
  }

  .b-hero-grid,
  .b-split {
    grid-template-columns: 1fr;
  }

  .b-hero-copy {
    max-width: 850px;
  }

  .b-capability-canvas {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .b-card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .b-product-feature {
    grid-template-columns: 1fr;
  }

  .b-service-band,
  .b-showcase-card,
  .b-showcase-visual,
  .b-app-download {
    grid-template-columns: 1fr;
  }

  .b-mini-card-grid,
  .b-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .b-product-stage {
    margin-top: 1rem;
  }

  .b-lifecycle {
    grid-template-columns: repeat(3, 1fr);
  }

  .b-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  :root {
    --brand-header: 68px;
  }

  .b-container,
  .b-narrow {
    width: min(calc(100% - 1.5rem), var(--brand-container));
  }

  .b-section {
    padding: 5rem 0;
  }

  .b-section-compact {
    padding: 3.8rem 0;
  }

  .b-section-heading {
    display: block;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .b-hero {
    min-height: auto;
    padding-top: calc(var(--brand-header) + 3.8rem);
  }

  .b-hero::after,
  .b-page-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.95), rgba(5, 7, 12, 0.62)),
      linear-gradient(180deg, rgba(5, 7, 12, 0.3), var(--brand-bg));
  }

  .b-hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.4rem);
  }

  .b-capability-canvas {
    min-height: 400px;
  }

  .b-dashboard-mockup {
    right: -3%;
    width: 94%;
    transform: none;
  }

  .b-workflow-mockup {
    bottom: 4%;
    width: 76%;
  }

  .b-mobile-mockup {
    right: 1%;
    bottom: 0;
    width: 126px;
    height: 252px;
  }

  .b-dashboard-body {
    grid-template-columns: 1fr;
  }

  .b-activity {
    display: none;
  }

  .b-signal-strip {
    margin-top: 0;
  }

  .b-signal-grid,
  .b-card-grid,
  .b-card-grid-4,
  .b-card-grid-3,
  .b-service-detail-grid,
  .b-fit-grid,
  .b-model-grid,
  .b-contact-grid,
  .b-field-grid,
  .b-link-card-grid {
    grid-template-columns: 1fr;
  }

  .b-signal-item {
    border-right: 0;
    border-bottom: 1px solid var(--brand-border);
  }

  .b-signal-item:last-child {
    border-bottom: 0;
  }

  .b-button-row,
  .b-button {
    width: 100%;
  }

  .b-delivery-flow {
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .b-delivery-flow::before {
    display: none;
  }

  .b-cta {
    grid-template-columns: 1fr;
  }

  .b-page-hero {
    min-height: 520px;
    padding-top: calc(var(--brand-header) + 4rem);
  }

  .b-page-hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.4rem);
  }

  .b-lifecycle {
    grid-template-columns: 1fr 1fr;
  }

  .b-mini-card-grid,
  .b-process-grid,
  .b-device-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .b-service-anchor-nav {
    display: grid;
  }

  .b-showcase-visual {
    gap: 1.5rem;
  }

  .b-device-row {
    min-height: 360px;
  }

  .b-footer-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .b-footer-brand {
    grid-column: 1 / -1;
  }

  .b-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .b-showcase-visual .b-qr-card,
  .b-app-download .b-qr-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .b-brand {
    font-size: 0.94rem;
  }

  .b-capability-canvas {
    min-height: 340px;
    margin-top: -1rem;
  }

  .b-dashboard-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .b-dashboard-metric:last-child {
    display: none;
  }

  .b-workflow-mockup {
    right: 8%;
    bottom: 0;
    left: 0;
    width: auto;
  }

  .b-workflow-stages {
    grid-template-columns: repeat(2, 1fr);
  }

  .b-workflow-stage::after {
    display: none;
  }

  .b-mobile-mockup {
    display: none;
  }

  .b-product-stage {
    min-height: 300px;
    transform: scale(0.8);
    transform-origin: center;
  }

  .b-service-band,
  .b-showcase-card,
  .b-app-download,
  .b-mail-composer {
    padding-inline: 1rem;
  }

  .b-mini-card-grid,
  .b-process-grid,
  .b-device-gallery {
    grid-template-columns: 1fr;
  }

  .b-device-row {
    min-height: 320px;
  }

  .b-device-phone {
    width: 145px;
    height: 294px;
  }

  .b-device-phone-large {
    width: 158px;
    height: 320px;
  }

  .b-device-gallery .b-device-phone {
    width: min(100%, 180px);
    margin-inline: auto;
  }

  .b-qr-image {
    width: 145px;
  }

  .b-lifecycle,
  .b-tech-grid,
  .b-footer-grid {
    grid-template-columns: 1fr;
  }

  .b-footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
