@font-face {
  font-family: "Dana";
  src: url("../fonts/Dana/woff2/DanaFaNum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dana";
  src: url("../fonts/Dana/woff2/DanaFaNum-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dana";
  src: url("../fonts/Dana/woff2/DanaFaNum-DemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Morabba";
  src: url("../fonts/Morabba/woff2/Morabba-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Morabba";
  src: url("../fonts/Morabba/woff2/Morabba-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07111f;
  --ink-2: #0b1b31;
  --ink-3: #122846;
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --blue: #176bff;
  --blue-2: #4a8cff;
  --cyan: #5ddcff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e9f1;
  --success: #39d98a;
  --radius: 28px;
  --container: 1200px;
  --shadow: 0 24px 70px rgba(12, 28, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Dana", Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.login-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-shell {
  position: relative;
  z-index: 10;
  isolation: isolate;
  min-height: 900px;
  padding-bottom: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(44, 116, 255, 0.18), transparent 31%),
    radial-gradient(circle at 90% 30%, rgba(36, 205, 255, 0.08), transparent 28%),
    var(--ink);
}

.top-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.announcement {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.announcement .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #b9c9de;
  font-size: 12px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(57, 217, 138, 0.09);
}

.site-header {
  position: relative;
  z-index: 1000;
  height: 86px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 72px;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  animation: headerDrop 0.3s ease both;
}

@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #2377ff, #0b4dc8);
  box-shadow: 0 10px 30px rgba(23, 107, 255, 0.32);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 12px;
  top: -4px;
  left: 5px;
  transform: rotate(-28deg);
  background: rgba(255, 255, 255, 0.28);
  filter: blur(5px);
}

.brand-mark .icon {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: "Morabba", sans-serif;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: #8294ae;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  color: #b7c4d7;
  font-size: 13px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-2);
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-link {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 4px;
  border: 0;
  color: #c9d6e7;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  transition: color 0.2s ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  color: #fff;
}

.panel-link .icon {
  width: 18px;
  height: 18px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2377ff, #0b5ae5);
  box-shadow: 0 13px 30px rgba(23, 107, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 17px 38px rgba(23, 107, 255, 0.4);
}

.btn-soft {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 12, 26, 0.14);
}

.btn .icon {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding-top: 28px;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: #020c1d;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.32);
}

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

.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 22, 0.03) 0%, rgba(2, 9, 22, 0.12) 34%, rgba(2, 9, 22, 0.91) 70%, #020914 100%),
    linear-gradient(0deg, rgba(2, 9, 22, 0.52), transparent 44%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  opacity: 0.65;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
  transform: scale(1);
}

.hero-slide.active .hero-backdrop {
  animation: heroScale 16s ease-in-out infinite alternate;
}

@keyframes heroScale {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(57%, 650px);
  padding: 72px 68px 118px 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 12px;
  border: 1px solid rgba(105, 169, 255, 0.22);
  border-radius: 999px;
  color: #b9d6ff;
  background: rgba(26, 102, 216, 0.12);
  font-size: 11px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(93, 220, 255, 0.09);
}

.hero-title {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "Morabba", sans-serif;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.hero-title .gradient-text {
  color: transparent;
  background: linear-gradient(92deg, #71e4ff 0%, #6da2ff 65%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-controls {
  position: absolute;
  z-index: 7;
  top: 28px;
  left: 28px;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 9px;
}

.hero-arrow,
.hero-dot {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(4, 16, 35, 0.58);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(113, 180, 255, 0.7);
  background: rgba(23, 107, 255, 0.72);
}

.hero-arrow .icon {
  width: 17px;
  height: 17px;
}

.hero-next .icon {
  transform: rotate(180deg);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(4, 16, 35, 0.5);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #71839b;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 22px;
  border-radius: 99px;
  background: #62cfff;
}

.hero-description {
  max-width: 580px;
  margin: 21px 0 0;
  color: #b7c7dc;
  font-size: 16px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.hero-proof {
  position: absolute;
  z-index: 5;
  right: 68px;
  bottom: 35px;
  display: flex;
  gap: 24px;
}

.proof-item {
  min-width: 128px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aabbd1;
  font-size: 11px;
}

.proof-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #7ec7ff;
  background: rgba(255, 255, 255, 0.06);
}

.proof-icon .icon {
  width: 17px;
  height: 17px;
}

.proof-item strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 12px;
}

.live-panel {
  position: absolute;
  z-index: 5;
  left: 34px;
  bottom: 30px;
  width: 230px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(4, 16, 35, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.live-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #aebcd0;
  font-size: 10px;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #78e7af;
}

.live-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(57, 217, 138, 0.1);
}

.scan-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
}

.scan-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 172, 255, 0.25);
  border-radius: 10px;
  color: #78baff;
  background: linear-gradient(145deg, rgba(32, 110, 234, 0.28), rgba(32, 110, 234, 0.08));
}

.scan-avatar .icon {
  width: 20px;
  height: 20px;
}

.scan-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
}

.scan-copy span {
  color: #8fa0b8;
  font-size: 9px;
}

.scan-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #072316;
  background: var(--success);
}

.scan-check .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: 28px;
}

.trust-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(13, 31, 55, 0.82);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.trust-label {
  max-width: 170px;
  color: #8fa3bd;
  font-size: 11px;
  line-height: 1.8;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e8f0fa;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item .icon {
  width: 19px;
  height: 19px;
  color: #61a5ff;
}

.section {
  position: relative;
  padding: 112px 0;
}

.entry-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(23, 107, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8faff, #fff);
}

.entry-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.entry-heading .section-kicker {
  justify-content: center;
}

.entry-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.entry-heading p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

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

.entry-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(15, 35, 65, 0.09);
}

.panel-entry {
  color: #fff;
  border-color: #23466f;
  background:
    radial-gradient(circle at 0 100%, rgba(39, 120, 255, 0.36), transparent 38%),
    linear-gradient(145deg, #102b4f, #071321 68%);
}

.shop-entry {
  color: var(--ink);
  background:
    radial-gradient(circle at 0 100%, rgba(80, 156, 255, 0.13), transparent 38%),
    #fff;
}

.entry-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  color: #8fc9ff;
  background: rgba(255, 255, 255, 0.07);
}

.shop-entry .entry-icon {
  border-color: #dbe8fb;
  color: var(--blue);
  background: #eef5ff;
}

.entry-icon .icon {
  width: 27px;
  height: 27px;
}

.entry-copy {
  max-width: 490px;
}

.entry-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #70c7ff;
  font-size: 10px;
  font-weight: 700;
}

.shop-entry .entry-tag {
  color: var(--blue);
}

.entry-card h3 {
  margin: 0;
  font-family: "Morabba", sans-serif;
  font-size: 27px;
  line-height: 1.55;
}

.entry-card p {
  margin: 10px 0 0;
  color: #a9bdd6;
  font-size: 13px;
  line-height: 2;
}

.shop-entry p {
  color: var(--muted);
}

.entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 18px;
}

.entry-points span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d5e4f5;
  font-size: 10px;
}

.shop-entry .entry-points span {
  color: #536174;
}

.entry-points .icon {
  width: 14px;
  height: 14px;
  color: #64cfff;
}

.entry-card > .btn {
  min-width: 190px;
  margin-top: auto;
}

.entry-panel-btn {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
}

.entry-shop-btn {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 13px 30px rgba(23, 107, 255, 0.25);
}

.section-soft {
  background: var(--canvas);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .section-kicker {
  justify-content: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 24px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 42, 73, 0.055);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 255, 0.32);
  box-shadow: 0 24px 60px rgba(20, 42, 73, 0.1);
}

.bento-card.large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 460px;
  color: #fff;
  border-color: #1d3556;
  background:
    radial-gradient(circle at 15% 18%, rgba(41, 127, 255, 0.32), transparent 32%),
    linear-gradient(145deg, #0d213d, #071321 64%);
}

.bento-card.medium {
  grid-column: span 5;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.bento-card.wide {
  grid-column: span 8;
  min-height: 260px;
}

.bento-card.small {
  grid-column: span 4;
  min-height: 260px;
}

.bento-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border: 1px solid #dce9ff;
  border-radius: 15px;
  color: var(--blue);
  background: #eef5ff;
}

.bento-card.large .bento-icon {
  border-color: rgba(255, 255, 255, 0.12);
  color: #83c5ff;
  background: rgba(255, 255, 255, 0.07);
}

.bento-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: 21px;
  line-height: 1.55;
}

.bento-card.large h3 {
  max-width: 470px;
  color: #fff;
  font-size: 31px;
}

.bento-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.bento-card.large p {
  max-width: 480px;
  color: #9fb2ca;
}

.dashboard-preview {
  position: absolute;
  right: 28px;
  left: 28px;
  bottom: -64px;
  height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px 20px 0 0;
  background: #0c1c31;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
}

.dashboard-bar {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34506f;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 11px;
  padding: 13px;
}

.camera-view {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(18, 103, 232, 0.18), transparent),
    #132a45;
}

.camera-view::before,
.camera-view::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(87, 178, 255, 0.44);
}

.camera-view::before {
  inset: 28px 32px 35px 44px;
}

.camera-view::after {
  width: 50px;
  height: 58px;
  right: 29%;
  top: 26%;
  border-color: #4ce9a0;
}

.analytics-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
}

.analytics-stack span {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #132a45;
}

.analytics-stack span::after {
  content: "";
  position: absolute;
  right: 10px;
  left: 20%;
  top: 50%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2778ff 65%, #263e59 65%);
}

.mini-flow {
  position: relative;
  width: 180px;
  height: 85px;
  flex: none;
  align-self: flex-end;
  margin-top: auto;
  padding-top: 20px;
  opacity: 0.9;
}

.mini-flow span {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dce7f6;
  border-radius: 13px;
  color: var(--blue);
  background: #f7faff;
}

.mini-flow span:nth-child(1) { right: 0; top: 20px; }
.mini-flow span:nth-child(2) { right: 68px; top: 0; }
.mini-flow span:nth-child(3) { left: 0; top: 34px; }

.mini-flow::before,
.mini-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 1px;
  transform-origin: right center;
  background: #9fc1f4;
}

.mini-flow::before {
  width: 58px;
  right: 39px;
  top: 41px;
  transform: rotate(-18deg);
}

.mini-flow::after {
  width: 65px;
  left: 36px;
  top: 43px;
  transform: rotate(23deg);
}

.pulse-visual {
  position: relative;
  width: 130px;
  height: 82px;
  display: flex;
  flex: none;
  align-self: flex-end;
  align-items: flex-end;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}

.pulse-visual i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, #1d6eff, #82dcff);
}

.pulse-visual i:nth-child(1) { height: 32%; }
.pulse-visual i:nth-child(2) { height: 58%; }
.pulse-visual i:nth-child(3) { height: 42%; }
.pulse-visual i:nth-child(4) { height: 84%; }
.pulse-visual i:nth-child(5) { height: 65%; }
.pulse-visual i:nth-child(6) { height: 100%; }

.products-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(23, 107, 255, 0.075), transparent 28%),
    #fff;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.products-head .section-heading {
  margin-bottom: 0;
}

.products-shop-link {
  flex: none;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 15px 32px rgba(7, 17, 31, 0.16);
}

.products-shop-link:hover {
  background: var(--blue);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 42, 73, 0.07);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 107, 255, 0.35);
  box-shadow: 0 26px 62px rgba(20, 42, 73, 0.13);
}

.catalog-media {
  position: relative;
  height: 205px;
  display: block;
  overflow: hidden;
  background: #081629;
}

.catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 13, 27, 0.55), transparent 55%);
  pointer-events: none;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.045);
}

.catalog-category {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  background: rgba(5, 20, 42, 0.72);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
}

.catalog-category .icon {
  width: 15px;
  height: 15px;
  color: #70b9ff;
}

.catalog-body {
  min-height: 230px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.catalog-body > strong {
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

.catalog-body > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #7d899b;
  font-size: 9px;
}

.catalog-footer b {
  flex: none;
  color: var(--blue);
  font-size: 11px;
}

.solution-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: stretch;
}

.solution-tabs {
  display: grid;
  gap: 14px;
}

.solution-tab {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 17px;
  color: var(--muted);
  text-align: right;
  cursor: pointer;
  background: transparent;
  transition: 0.25s ease;
}

.solution-tab:hover {
  color: var(--ink);
  background: #fff;
}

.solution-tab.active {
  color: var(--ink);
  border-color: #dce7f7;
  background: #fff;
  box-shadow: 0 13px 35px rgba(27, 52, 85, 0.08);
}

.tab-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #6d7e94;
  background: #edf1f6;
  transition: 0.25s ease;
}

.solution-tab.active .tab-icon {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(23, 107, 255, 0.25);
}

.solution-tab strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.solution-tab small {
  color: #8c98aa;
  font-size: 10px;
}

.solution-tab > .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.solution-tab.active > .icon {
  color: var(--blue);
  transform: translateX(-4px);
}

.solution-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.solution-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.solution-slide.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.solution-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

.solution-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 12, 27, 0.98) 0%, rgba(3, 12, 27, 0.8) 34%, rgba(3, 12, 27, 0.05) 80%);
}

.solution-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.solution-copy h3 {
  margin: 0 0 10px;
  font-family: "Morabba", sans-serif;
  font-size: 27px;
}

.solution-copy p {
  margin: 0;
  color: #b8c8dc;
  font-size: 13px;
  line-height: 2;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.solution-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #dce8f8;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.solution-points .icon {
  width: 14px;
  height: 14px;
  color: #61e4a4;
}

.platform-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 10%, rgba(34, 115, 255, 0.24), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(0, 196, 255, 0.08), transparent 31%),
    var(--ink);
}

.platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 27px 27px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.platform-section .section-heading h2 {
  color: #fff;
}

.platform-section .section-heading p {
  color: #9eb0c6;
}

.platform-section .section-kicker {
  color: #71b8ff;
}

.platform-orbit {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(99, 159, 241, 0.18);
  border-radius: 50%;
}

.orbit-ring.one {
  width: 430px;
  height: 430px;
}

.orbit-ring.two {
  width: 590px;
  height: 590px;
  border-style: dashed;
  animation: ringRotate 40s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.orbit-core {
  position: relative;
  z-index: 3;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(112, 177, 255, 0.25);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(78, 159, 255, 0.3), transparent 31%),
    #0d2340;
  box-shadow: 0 0 0 18px rgba(22, 107, 255, 0.04), 0 30px 90px rgba(0, 0, 0, 0.32);
}

.orbit-core .brand-mark {
  width: 57px;
  height: 57px;
  margin: 0 auto 13px;
  border-radius: 18px;
}

.orbit-core strong {
  display: block;
  font-family: "Morabba", sans-serif;
  font-size: 22px;
}

.orbit-core small {
  display: block;
  margin-top: 5px;
  color: #89a0bb;
  font-size: 10px;
}

.orbit-node {
  position: absolute;
  z-index: 4;
  width: 170px;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  color: #dce8f8;
  background: rgba(13, 34, 61, 0.83);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(13px);
}

.orbit-node .node-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 12px;
  color: #72b5ff;
  background: rgba(29, 111, 235, 0.17);
}

.orbit-node .icon {
  width: 20px;
  height: 20px;
}

.orbit-node strong {
  display: block;
  font-size: 12px;
}

.orbit-node small {
  display: block;
  margin-top: 3px;
  color: #8298b2;
  font-size: 9px;
  line-height: 1.6;
}

.node-1 { top: 1%; right: 18%; }
.node-2 { top: 1%; left: 18%; }
.node-3 { top: 43%; right: 3%; }
.node-4 { top: 43%; left: 3%; }
.node-5 { bottom: 1%; right: 18%; }
.node-6 { bottom: 1%; left: 18%; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  position: relative;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: -55px;
  bottom: -60px;
  border: 18px solid #f0f5ff;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 255, 0.35);
}

.industry-card:hover::after {
  transform: scale(1.2);
}

.industry-number {
  color: #a2adbd;
  font-size: 11px;
}

.industry-card .industry-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #edf4ff;
}

.industry-card h3 {
  margin: 22px 0 7px;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: 20px;
}

.industry-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.process-grid::before {
  content: "";
  position: absolute;
  right: 16.5%;
  left: 16.5%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, #cdd8e7 50%, transparent 50%);
  background-size: 10px 1px;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 7px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 0 0 1px #cbd9ec, 0 12px 28px rgba(23, 107, 255, 0.18);
  font-family: "Morabba", sans-serif;
  font-size: 17px;
}

.process-step h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: 20px;
}

.process-step p {
  max-width: 285px;
  margin: auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.consult-wrap {
  padding-bottom: 112px;
}

.consult-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 55px;
  overflow: hidden;
  padding: 54px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 110%, rgba(41, 169, 255, 0.27), transparent 32%),
    linear-gradient(135deg, #0e6bf0, #0a4fc3 63%, #073a94);
  box-shadow: 0 35px 80px rgba(12, 84, 190, 0.25);
}

.consult-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: -230px;
  border: 55px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.consult-copy,
.consult-form {
  position: relative;
  z-index: 2;
}

.consult-copy {
  align-self: center;
}

.consult-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d8eaff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.consult-copy h2 {
  margin: 0 0 14px;
  font-family: "Morabba", sans-serif;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.consult-copy p {
  margin: 0;
  color: #c8e0ff;
  font-size: 13px;
  line-height: 2;
}

.consult-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.consult-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #eaf4ff;
  font-size: 10px;
}

.consult-meta .icon {
  width: 15px;
  height: 15px;
  color: #94f0c0;
}

.consult-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(5, 37, 88, 0.36);
  backdrop-filter: blur(12px);
}

.field {
  position: relative;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin: 0 4px 7px;
  color: #d9eaff;
  font-size: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  background: rgba(4, 26, 60, 0.45);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
  padding: 12px 13px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9eb8dc;
}

.field select option {
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(4, 26, 60, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.consult-form .btn {
  grid-column: 1 / -1;
  min-height: 52px;
  margin-top: 4px;
}

.form-message {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.8;
}

.form-message.show {
  display: block;
}

.form-message.success {
  color: #c8f9df;
  background: rgba(31, 187, 108, 0.16);
}

.form-message.error {
  color: #ffe1e1;
  background: rgba(232, 67, 67, 0.18);
}

.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 48px;
  padding: 64px 0 45px;
}

.footer-about p {
  max-width: 340px;
  margin: 19px 0 0;
  color: #8ea1ba;
  font-size: 12px;
  line-height: 2;
}

.footer-column h3 {
  margin: 3px 0 18px;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #8ea1ba;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links button {
  width: max-content;
  padding: 0;
  border: 0;
  color: #8ea1ba;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  text-align: right;
  transition: color 0.2s ease;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: #fff;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9cafc6;
  font-size: 11px;
  line-height: 1.8;
}

.footer-contact .icon {
  width: 17px;
  height: 17px;
  flex: none;
  color: #5aa4ff;
}

.footer-bottom {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f829b;
  font-size: 10px;
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badges span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #8da1b9;
}

.mobile-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(2, 8, 18, 0.68);
  backdrop-filter: blur(8px);
  transition: opacity 0.25s ease, visibility 0.25s;
}

.mobile-panel.open {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88%, 360px);
  height: 100%;
  padding: 22px;
  transform: translateX(100%);
  color: #fff;
  background: #091729;
  transition: transform 0.3s ease;
}

.mobile-panel.open .mobile-drawer {
  transform: translateX(0);
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-links {
  display: grid;
  gap: 4px;
  padding: 24px 0;
}

.mobile-links a {
  padding: 13px 10px;
  border-radius: 10px;
  color: #bdcbde;
  font-size: 13px;
}

.mobile-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-drawer .btn {
  width: 100%;
}

.mobile-quick-actions {
  display: grid;
  gap: 10px;
}

.btn-panel {
  color: #fff;
  border: 1px solid rgba(112, 173, 255, 0.3);
  background: rgba(23, 107, 255, 0.11);
}

.mobile-consult-link {
  display: block;
  padding: 15px 4px 0;
  color: #91a5bf;
  font-size: 10px;
  text-align: center;
}

.login-modal {
  position: fixed;
  z-index: 2200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.login-modal.open {
  visibility: visible;
  opacity: 1;
}

.login-scrim {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.8);
  backdrop-filter: blur(10px);
}

.login-dialog {
  position: relative;
  width: min(100%, 470px);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 27px;
  transform: translateY(18px) scale(0.985);
  border: 1px solid #dfe7f2;
  border-radius: 26px;
  outline: none;
  color: var(--text);
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

.login-modal.open .login-dialog {
  transform: translateY(0) scale(1);
}

.login-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.login-dialog .brand-copy strong {
  color: var(--ink);
}

.login-close {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #536174;
  background: #f7f9fc;
  cursor: pointer;
}

.login-dialog-copy {
  padding: 25px 0 20px;
}

.login-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.login-kicker .icon {
  width: 15px;
  height: 15px;
}

.login-dialog-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Morabba", sans-serif;
  font-size: 31px;
}

.login-dialog-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.panel-login-form {
  display: grid;
  gap: 15px;
}

.login-field {
  display: grid;
  gap: 7px;
}

.login-field label {
  color: #344054;
  font-size: 11px;
  font-weight: 700;
}

.login-field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #dfe5ed;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f8fafd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-field input:focus {
  border-color: rgba(23, 107, 255, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.09);
}

.panel-login-form .btn {
  width: 100%;
  margin-top: 3px;
}

.panel-login-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.panel-login-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #ffd7d7;
  border-radius: 10px;
  color: #b42318;
  background: #fff1f1;
  font-size: 11px;
  line-height: 1.8;
}

.login-security {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #7b8798;
  font-size: 9px;
  line-height: 1.8;
}

.login-security .icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .panel-link {
    display: none;
  }

  .hero-content {
    width: 63%;
    padding-right: 42px;
  }

  .hero-proof {
    right: 42px;
  }

  .live-panel {
    display: none;
  }

  .bento-card.large {
    grid-column: span 7;
  }

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

  .orbit-node {
    width: 150px;
  }

  .node-1,
  .node-5 { right: 10%; }
  .node-2,
  .node-6 { left: 10%; }
  .node-3 { right: 0; }
  .node-4 { left: 0; }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .main-nav,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-row {
    justify-content: space-between;
  }

  .hero-stage {
    min-height: 690px;
    align-items: flex-start;
  }

  .hero-stage::before {
    background:
      linear-gradient(0deg, rgba(2, 9, 22, 0.98) 3%, rgba(2, 9, 22, 0.82) 52%, rgba(2, 9, 22, 0.14) 100%),
      linear-gradient(90deg, rgba(2, 9, 22, 0.2), rgba(2, 9, 22, 0.65));
  }

  .hero-backdrop {
    height: 56%;
    object-position: 28% center;
  }

  .hero-content {
    width: 100%;
    align-self: flex-end;
    padding: 300px 30px 135px;
  }

  .hero-title {
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero-proof {
    right: 30px;
    left: 30px;
    bottom: 32px;
  }

  .proof-item {
    flex: 1;
    min-width: auto;
  }

  .trust-shell {
    align-items: flex-start;
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.large,
  .bento-card.medium,
  .bento-card.wide,
  .bento-card.small {
    grid-column: span 6;
    grid-row: auto;
    min-height: 280px;
  }

  .bento-card.large {
    min-height: 470px;
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

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

  .solution-tab {
    grid-template-columns: 42px 1fr;
  }

  .solution-tab > .icon {
    display: none;
  }

  .tab-icon {
    width: 42px;
    height: 42px;
  }

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

  .orbit-ring.one { width: 350px; height: 350px; }
  .orbit-ring.two { width: 500px; height: 500px; }
  .orbit-node { width: 145px; }
  .node-1,
  .node-5 { right: 0; }
  .node-2,
  .node-6 { left: 0; }

  .consult-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .consult-copy {
    max-width: 640px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --radius: 20px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .announcement .container {
    min-height: 34px;
    font-size: 9px;
  }

  .site-header {
    height: 72px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .top-shell {
    min-height: auto;
    padding-bottom: 62px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-stage {
    min-height: 700px;
    border-radius: 23px;
  }

  .hero-backdrop {
    height: 43%;
    object-position: 22% center;
  }

  .hero-content {
    padding: 276px 20px 150px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero-title {
    font-size: 37px;
    line-height: 1.35;
  }

  .hero-description {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.95;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .btn {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero-proof {
    right: 20px;
    left: 20px;
    bottom: 27px;
    gap: 5px;
  }

  .proof-item {
    display: block;
    padding-left: 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 8px;
  }

  .proof-item:last-child {
    border-left: 0;
  }

  .proof-icon {
    display: none;
  }

  .proof-item strong {
    font-size: 10px;
  }

  .trust-strip {
    margin-top: 18px;
  }

  .trust-shell {
    display: block;
    padding: 18px;
    border-radius: 17px;
  }

  .trust-label {
    max-width: none;
    margin-bottom: 15px;
  }

  .trust-items {
    gap: 12px 8px;
  }

  .trust-item {
    font-size: 9px;
    white-space: normal;
  }

  .trust-item .icon {
    width: 16px;
    height: 16px;
  }

  .section {
    padding: 78px 0;
  }

  .entry-section {
    padding: 72px 0 78px;
  }

  .entry-heading {
    margin-bottom: 30px;
    text-align: right;
  }

  .entry-heading .section-kicker {
    justify-content: flex-start;
  }

  .entry-heading h2 {
    font-size: 31px;
  }

  .entry-heading p {
    font-size: 12px;
  }

  .entry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .entry-card {
    min-height: 410px;
    padding: 25px;
    border-radius: 22px;
  }

  .entry-card h3 {
    font-size: 24px;
  }

  .entry-card > .btn {
    width: 100%;
  }

  .login-modal {
    align-items: end;
    padding: 10px;
  }

  .login-dialog {
    max-height: calc(100vh - 20px);
    padding: 22px 18px;
    border-radius: 24px;
  }

  .login-dialog-copy h2 {
    font-size: 28px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 31px;
    line-height: 1.5;
  }

  .section-heading p {
    font-size: 12px;
  }

  .bento-grid {
    display: block;
  }

  .bento-card,
  .bento-card.large,
  .bento-card.medium,
  .bento-card.wide,
  .bento-card.small {
    min-height: 0;
    margin-bottom: 18px;
    padding: 23px;
    border-radius: 20px;
  }

  .bento-card.large {
    min-height: 430px;
  }

  .bento-card.medium {
    min-height: 330px;
  }

  .bento-card.wide,
  .bento-card.small {
    min-height: 230px;
  }

  .bento-card.large h3 {
    font-size: 25px;
  }

  .dashboard-preview {
    right: 20px;
    left: 20px;
  }

  .mini-flow,
  .pulse-visual {
    transform: none;
  }

  .solution-tabs {
    display: flex;
    margin-inline: -12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .solution-tab {
    min-width: 225px;
    padding: 12px;
  }

  .solution-visual {
    min-height: 460px;
    border-radius: 23px;
  }

  .solution-slide {
    padding: 24px;
  }

  .solution-copy h3 {
    font-size: 23px;
  }

  .platform-orbit {
    min-height: 680px;
  }

  .orbit-ring.one {
    width: 260px;
    height: 260px;
  }

  .orbit-ring.two {
    width: 430px;
    height: 430px;
  }

  .orbit-core {
    width: 180px;
    height: 180px;
  }

  .orbit-node {
    width: 142px;
    min-height: 76px;
    padding: 11px;
  }

  .orbit-node .node-icon {
    width: 34px;
    height: 34px;
  }

  .orbit-node small {
    display: none;
  }

  .node-1 { top: 3%; right: 0; }
  .node-2 { top: 3%; left: 0; }
  .node-3 { top: 44%; right: -6px; }
  .node-4 { top: 44%; left: -6px; }
  .node-5 { bottom: 3%; right: 0; }
  .node-6 { bottom: 3%; left: 0; }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-head {
    display: block;
    margin-bottom: 34px;
  }

  .products-shop-link {
    width: 100%;
    margin-top: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-media {
    height: 220px;
  }

  .catalog-body {
    min-height: 0;
  }

  .industry-card {
    min-height: 190px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 15px;
    text-align: right;
  }

  .step-number {
    width: 52px;
    height: 52px;
    grid-row: span 2;
    margin: 0;
    border-width: 5px;
  }

  .process-step h3 {
    align-self: end;
    font-size: 17px;
  }

  .process-step p {
    max-width: none;
    margin: 0;
  }

  .consult-wrap {
    padding-bottom: 78px;
  }

  .consult-panel {
    gap: 28px;
    padding: 30px 20px 20px;
    border-radius: 24px;
  }

  .consult-copy h2 {
    font-size: 30px;
  }

  .consult-form {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .field,
  .field.full {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
    padding-top: 50px;
  }

  .footer-about,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
