:root {
  --navy: #0f172a;
  --navy-deep: #0a1120;
  --navy-2: #172033;
  --navy-3: #1c2940;
  --yellow: #ffc107;
  --yellow-soft: rgba(255,193,7,.14);
  --green: #22c55e;
  --red: #ef4444;
  --blue: #60a5fa;
  --muted: #94a3b8;
  --muted-2: #b7c2d1;
  --text: #f8fafc;
  --border: rgba(255,255,255,.08);
  --page: #0b1220;
  --shadow: 0 35px 100px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button { font: inherit; }

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 15, 27, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #06090f;
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  font-style: italic;
  box-shadow: 0 10px 28px rgba(255,193,7,.12);
}

.brand-mark.mini {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  font-size: 20px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: .12em;
  font-weight: 950;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: .16em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 750;
}

.main-nav > a:not(.button) {
  color: #cbd5e1;
  transition: color .2s ease;
}

.main-nav > a:not(.button):hover { color: #fff; }

.nav-login { color: var(--yellow) !important; }

.nav-toggle {
  display: none;
  padding: 8px;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #090c12;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button-primary:hover {
  box-shadow: 0 14px 36px rgba(255,193,7,.22);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-secondary {
  color: white;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.14);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.28);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(255,193,7,.06), transparent 28%),
    linear-gradient(180deg, #0d1627 0%, #0b1220 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 60%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(100px);
}

.hero-glow-yellow {
  width: 430px;
  height: 430px;
  right: 3%;
  top: 17%;
  background: rgba(255,193,7,.085);
}

.hero-glow-blue {
  width: 300px;
  height: 300px;
  left: -8%;
  bottom: 2%;
  background: rgba(96,165,250,.055);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0 78px;
}

.eyebrow {
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,193,7,.16);
  background: rgba(255,193,7,.045);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34,197,94,.08);
}

.hero h1 {
  margin: 20px 0 18px;
  max-width: 650px;
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: .94;
  letter-spacing: -.052em;
  font-weight: 950;
}

.hero h1 span { color: var(--yellow); }

.hero-statement {
  margin: 0 0 16px;
  max-width: 610px;
  color: #eef2f7;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.45;
  font-weight: 760;
  letter-spacing: -.015em;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #aebbd0;
  font-size: 15.5px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  gap: 34px;
  margin-top: 30px;
}

.trust-row div {
  position: relative;
  display: flex;
  flex-direction: column;
}

.trust-row div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 4px;
  width: 1px;
  height: 29px;
  background: rgba(255,255,255,.08);
}

.trust-row b {
  color: white;
  font-size: 13px;
}

.trust-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9.5px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-shadow {
  position: absolute;
  width: 78%;
  height: 60%;
  border-radius: 50%;
  background: rgba(0,0,0,.48);
  filter: blur(60px);
  bottom: 20px;
}

.device-card {
  position: relative;
  z-index: 3;
  width: min(100%, 630px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 25%),
    linear-gradient(155deg, #142139 0%, #0f172a 68%);
  box-shadow:
    0 38px 110px rgba(0,0,0,.46),
    0 0 0 1px rgba(255,255,255,.01) inset;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.mini-brand strong {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .11em;
}

.mini-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .12em;
}

.company-chip {
  padding: 8px 11px;
  border-radius: 10px;
  background: white;
  color: var(--navy);
  font-size: 7.5px;
  font-weight: 950;
}

.dashboard-welcome {
  padding: 20px 1px 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.dashboard-welcome > div {
  display: flex;
  flex-direction: column;
}

.dashboard-welcome small {
  color: #9fb0c7;
  font-size: 10px;
}

.dashboard-welcome strong {
  margin-top: 3px;
  font-size: 19px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
}

.live-indicator i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34,197,94,.08);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.dash-card {
  min-height: 94px;
  padding: 14px;
  border-radius: 15px;
  background: #18243a;
  border: 1px solid rgba(255,255,255,.075);
}

.dash-card-focus {
  border-color: rgba(255,193,7,.32);
  background: linear-gradient(145deg, rgba(255,193,7,.06), #18243a 58%);
}

.dash-label {
  color: #9fb0c7;
  font-size: 8.5px;
}

.dash-value {
  margin-top: 7px;
  color: white;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.dash-note {
  margin-top: 8px;
  color: #75869d;
  font-size: 7.5px;
}

.dash-note.positive { color: var(--green); }
.dash-note.warning { color: #f6c65b; }

.exposure-card {
  margin-top: 10px;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,193,7,.09), rgba(255,193,7,.035));
  border: 1px solid rgba(255,193,7,.3);
}

.exposure-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.exposure-card small {
  color: #9fb0c7;
  font-size: 7.5px;
  letter-spacing: .07em;
  font-weight: 800;
}

.exposure-card strong {
  margin-top: 3px;
  font-size: 25px;
  line-height: 1.05;
}

.exposure-card span {
  margin-top: 4px;
  color: #73839a;
  font-size: 7.5px;
}

.exposure-trend {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.dashboard-section-label {
  margin: 15px 1px 7px;
  display: flex;
  justify-content: space-between;
  color: #8192aa;
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-bars {
  display: grid;
  gap: 9px;
}

.site-row {
  display: grid;
  grid-template-columns: 76px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.site-row > span {
  color: #9fb0c7;
  font-size: 7.5px;
}

.site-row b {
  color: #dce5ef;
  font-size: 7.5px;
  text-align: right;
}

.bar {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.055);
}

.bar i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc107, #ffd85a);
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 178px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: rgba(22, 32, 51, .94);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: var(--muted);
  font-size: 6.5px;
  font-weight: 850;
  letter-spacing: .09em;
}

.floating-card strong {
  margin-top: 2px;
  font-size: 10px;
}

.floating-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 9px;
  color: #07100b;
  background: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.floating-icon.camera {
  color: #0f172a;
  background: var(--yellow);
}

.float-left {
  left: -8px;
  bottom: 58px;
}

.float-right {
  right: -10px;
  top: 65px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-cue i {
  color: var(--yellow);
  font-style: normal;
  animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.proof-strip {
  background: var(--yellow);
  color: #080b11;
}

.proof-grid {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .075em;
}

.proof-grid i {
  opacity: .42;
  font-style: normal;
}

.section {
  padding: 108px 0;
}

.section-dark {
  background: var(--navy);
  border-block: 1px solid var(--border);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.management-copy h2,
.cta-card h2,
.contact-grid h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.45vw, 54px);
  line-height: 1.04;
  letter-spacing: -.037em;
  font-weight: 950;
}

.section-heading p,
.management-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 248px;
  padding: 23px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255,255,255,.018), transparent 40%), var(--navy-2);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,193,7,.24);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,193,7,.03);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-top > span {
  color: #66768c;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .11em;
}

.feature-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,193,7,.1);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 950;
}

.feature-card h3 {
  margin: 30px 0 9px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  position: relative;
  min-height: 225px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255,193,7,.028), transparent 35%), var(--navy-2);
  border: 1px solid var(--border);
}

.workflow-step > span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.workflow-icon {
  width: 38px;
  height: 38px;
  margin-top: 21px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--yellow-soft);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 950;
}

.workflow-step h3 {
  margin: 20px 0 7px;
  font-size: 21px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.68;
}

.workflow-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,193,7,.07), var(--yellow), rgba(255,193,7,.07));
}

.management-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 85px;
  align-items: center;
}

.management-copy h2 {
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 27px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check-list li {
  color: #d6deea;
  font-size: 12.5px;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.role-panel {
  padding: 19px;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,193,7,.025), transparent 38%), #121d30;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
}

.role-panel-head {
  padding: 2px 2px 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.role-panel-head span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
}

.role-panel-head small {
  color: #6e7e94;
  font-size: 8px;
}

.role-stack {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.role-card {
  padding: 15px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 13px;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.055);
}

.role-card span {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .05em;
}

.role-card small {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.role-admin {
  border-color: rgba(255,193,7,.22);
  background: rgba(255,193,7,.055);
}

.role-admin span { color: var(--yellow); }

.cta-section {
  padding: 18px 0 106px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,193,7,.14), transparent 28%),
    linear-gradient(145deg, #111d31, #0f172a);
  border: 1px solid rgba(255,193,7,.18);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255,193,7,.04);
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 790px;
  font-size: clamp(30px, 3.8vw, 45px);
}

.cta-card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.cta-card .button { flex-shrink: 0; }

.compact-section { padding-top: 38px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}

.contact-panel {
  padding: 24px;
  border-radius: 20px;
  background: var(--navy-2);
  border: 1px solid var(--border);
}

.contact-panel p {
  margin: 0 0 9px;
  color: var(--muted);
}

.contact-panel a {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.contact-panel small {
  display: block;
  margin-top: 10px;
  color: #68798f;
  font-size: 8.5px;
}

.login-placeholder {
  padding: 21px 0;
  background: rgba(255,255,255,.018);
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.login-placeholder span {
  color: var(--yellow);
  font-weight: 900;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #080e19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--muted);
  font-size: 9.5px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 10.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay {
  transition-delay: .1s;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue i { animation: none; }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    width: min(860px, calc(100% - 42px));
    gap: 54px;
    padding-top: 78px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow-pill { margin-inline: auto; }
  .hero h1, .hero-statement, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .device-card { width: min(100%, 670px); }

  .scroll-cue { display: none; }

  .section-heading,
  .management-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 72px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border-radius: 17px;
    background: #111b2c;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 10px 8px;
  }

  .nav-toggle { display: block; }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .footer-grid .brand,
  .footer-links {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1220px); }

  .nav-wrap { min-height: 68px; }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 28px, 860px);
    padding: 58px 0 66px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .hero-statement {
    font-size: 17px;
  }

  .desktop-break { display: none; }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 23px;
  }

  .trust-row div:not(:last-child)::after {
    right: -12px;
  }

  .device-card {
    padding: 15px;
    border-radius: 22px;
    transform: none;
  }

  .floating-card { display: none; }

  .dashboard-welcome strong { font-size: 16px; }

  .dash-card {
    min-height: 83px;
    padding: 12px;
  }

  .dash-value { font-size: 22px; }

  .site-row {
    grid-template-columns: 65px 1fr 36px;
  }

  .proof-grid {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-grid i { display: none; }

  .proof-grid span {
    width: calc(33.333% - 10px);
    text-align: center;
    font-size: 8.5px;
  }

  .section { padding: 76px 0; }

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

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-line {
    width: 1px;
    height: 28px;
    margin: auto;
  }

  .check-list { grid-template-columns: 1fr; }

  .role-panel-head,
  .role-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-card small { text-align: left; }

  .cta-section { padding-bottom: 76px; }

  .cta-card {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card .button { width: 100%; }

  .contact-panel a {
    font-size: 17px;
    word-break: break-word;
  }
}
