:root {
  --navy: #071b33;
  --text: #102033;
  --muted: #667085;
  --cyan: #00b8e6;
  --sky: #4dd8ff;
  --soft: #f4fbff;
  --line: #d9edf5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 27, 51, 0.11);
  --shadow-soft: 0 12px 34px rgba(7, 27, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(0, 184, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 230, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

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

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

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 237, 245, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #31445a;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-menu a {
  padding: 12px 0;
}

.nav-menu a:hover {
  color: var(--cyan);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 27, 51, 0.14);
}

.nav-cta:hover {
  background: #0d2849;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0d385f 58%, var(--cyan));
  box-shadow: 0 16px 30px rgba(0, 184, 230, 0.22);
}

.button.secondary {
  color: var(--navy);
  border-color: #bfeefa;
  background: var(--white);
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.9);
}

.button:hover,
.nav-cta:hover,
.feature-card a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
}

.lucide {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at 78% 14%, rgba(77, 216, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fdff 0%, #ffffff 88%);
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 36px;
  width: 96px;
  height: 96px;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 18px 18px no-repeat,
    linear-gradient(var(--sky), var(--sky)) 36px 18px / 14px 14px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 62px 50px / 22px 22px no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.01fr) minmax(430px, 0.99fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(2.65rem, 4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.eyebrow,
.section-heading span,
.cta-panel span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #067ca0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-pixels {
  width: 24px;
  height: 24px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 8px 8px no-repeat,
    linear-gradient(var(--sky), var(--sky)) 12px 4px / 8px 8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 8px 16px / 8px 8px no-repeat;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-notes span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #cceff8;
  border-radius: 999px;
  color: #23506a;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.dashboard-mockup {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 238, 250, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffffff, #eafdff);
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfeefa;
}

.mockup-topbar strong {
  margin-left: 8px;
  color: var(--navy);
  font-size: 0.86rem;
}

.mockup-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-width: 0;
  min-height: 430px;
}

.mockup-sidebar {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: #f7fdff;
}

.mockup-sidebar span {
  display: block;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e4f8ff, #ffffff);
}

.mockup-content {
  min-width: 0;
  padding: 26px;
}

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

.mockup-title small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.mockup-title strong {
  color: var(--navy);
  font-size: 1.34rem;
}

.mockup-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 36px;
  border-radius: 8px;
  color: var(--navy);
  background: #d7f8ff;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.metric-row article,
.service-card,
.soft-card,
.product-grid article,
.price-card {
  border: 1px solid rgba(217, 237, 245, 0.92);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.metric-row article {
  min-height: 118px;
  padding: 16px;
}

.metric-row i,
.soft-card i,
.service-card i {
  color: var(--cyan);
}

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

.metric-row strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.94rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-card {
  height: 144px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #effbff);
}

.chart-bars {
  display: flex;
  align-items: end;
  height: 100%;
  gap: 13px;
}

.chart-bars span {
  flex: 1;
  min-width: 14px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--sky), var(--cyan));
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.task-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34465c;
  font-weight: 700;
}

.task-list i {
  color: var(--cyan);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 184, 230, 0.36);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.orbit-one {
  inset: 58px -22px 54px 48px;
}

.orbit-two {
  inset: 110px 24px 105px 92px;
  border-color: rgba(7, 27, 51, 0.1);
}

.pixel-cloud {
  position: absolute;
  z-index: 4;
  width: 116px;
  height: 92px;
}

.cloud-left {
  left: -26px;
  bottom: 68px;
}

.pixel-cloud span {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  box-shadow: 0 10px 18px rgba(0, 184, 230, 0.19);
}

.pixel-cloud span:nth-child(1) {
  left: 0;
  top: 32px;
}

.pixel-cloud span:nth-child(2) {
  left: 34px;
  top: 8px;
  width: 36px;
  height: 36px;
}

.pixel-cloud span:nth-child(3) {
  left: 70px;
  top: 46px;
}

.pixel-cloud span:nth-child(4) {
  left: 28px;
  top: 58px;
  width: 18px;
  height: 18px;
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2,
.cta-panel h2,
.placeholder-shell h1 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.cta-panel p,
.placeholder-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.three-grid,
.four-grid,
.pricing-grid,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.soft-card,
.service-card,
.feature-card,
.product-grid article,
.price-card {
  padding: 24px;
}

.soft-card h3,
.service-card h3,
.feature-card h3,
.product-grid h3,
.price-card h3,
.workflow-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.soft-card p,
.service-card p,
.feature-card p,
.product-grid p,
.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution {
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 48px;
}

.solution-stack {
  display: grid;
  gap: 16px;
}

.solution-stack article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid #cdeff8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.solution-stack strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, #d7f8ff, #ffffff);
}

.solution-stack h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.solution-stack p {
  margin: 0;
  color: var(--muted);
}

.ecosystem {
  background: #ffffff;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #cdeff8;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.feature-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  content: "";
  opacity: 0.18;
  background:
    linear-gradient(var(--cyan), var(--cyan)) 0 0 / 12px 12px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 16px 16px / 12px 12px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 32px 6px / 10px 10px no-repeat;
}

.highlight-card {
  background: linear-gradient(180deg, #ffffff, #ecfbff);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--navy);
  background: #d7f8ff;
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #057da3;
  font-weight: 800;
}

.services,
.workflow,
.pricing {
  background: var(--soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-grid article {
  min-height: 220px;
}

.badge {
  color: #057da3;
  background: #effbff;
}

.badge.muted {
  color: #4b5f75;
  background: #f7fafc;
}

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

.workflow-card {
  padding: 28px;
  border: 1px solid #cdeff8;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.workflow-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.workflow-label i {
  color: var(--cyan);
}

.workflow-card ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 21px;
  color: #34465c;
}

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

.portfolio-grid article {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.95)),
    radial-gradient(circle at top right, rgba(0, 184, 230, 0.2), transparent 34%);
}

.portfolio-grid span {
  color: #067ca0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-grid strong {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 42px;
  padding: 36px;
  border: 1px solid #cdeff8;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff, #eefbff),
    radial-gradient(circle at 100% 0, rgba(0, 184, 230, 0.18), transparent 38%);
  box-shadow: var(--shadow-soft);
}

.trust-panel .section-heading {
  margin-bottom: 0;
}

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

.trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(191, 238, 250, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: #243a53;
  font-weight: 700;
}

.trust-list i {
  color: var(--cyan);
}

.price-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
}

.price-card span {
  color: #067ca0;
  font-size: 0.82rem;
  font-weight: 800;
}

.price-card h3 {
  font-size: 1.46rem;
}

.price-card.emphasized {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), #0f4770);
}

.price-card.emphasized span,
.price-card.emphasized h3,
.price-card.emphasized p {
  color: var(--white);
}

.final-cta {
  background:
    radial-gradient(circle at 82% 26%, rgba(77, 216, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fdff);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #071b33, #0b3156 58%, #087a9d);
  box-shadow: var(--shadow);
}

.cta-panel span,
.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel p {
  opacity: 0.84;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  background: #06172b;
  color: #d9e9f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 330px;
  margin: 14px 0 0;
  color: #a9bdca;
  font-size: 0.92rem;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.96rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #c3d5df;
  font-size: 0.92rem;
}

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

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7fdff, #ffffff);
}

.placeholder-shell {
  width: min(680px, calc(100% - 40px));
  padding: 34px;
  border: 1px solid #cdeff8;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.back-link {
  color: #067ca0;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .trust-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy,
  .hero-visual {
    min-width: 0;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

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

@media (max-width: 860px) {
  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 10px;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: var(--soft);
  }

  .nav-cta {
    display: none;
  }

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

  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-body {
    grid-template-columns: 64px 1fr;
  }

  .mockup-content {
    padding: 18px;
  }

  .mockup-sidebar {
    padding: 18px 12px;
  }
}

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

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    max-width: 420px;
    margin-bottom: 16px;
    font-size: 2.28rem;
    line-height: 1.14;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.64;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-notes {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-notes span,
  .badge {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

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

  .dashboard-mockup {
    box-shadow: 0 14px 34px rgba(7, 27, 51, 0.09);
  }

  .mockup-topbar {
    height: 42px;
    padding: 0 12px;
    gap: 6px;
  }

  .mockup-topbar span {
    width: 8px;
    height: 8px;
  }

  .mockup-topbar strong {
    margin-left: 5px;
    font-size: 0.72rem;
  }

  .mockup-body {
    grid-template-columns: 44px 1fr;
    min-height: 0;
  }

  .mockup-sidebar {
    padding: 14px 8px;
  }

  .mockup-sidebar span {
    height: 28px;
    margin-bottom: 10px;
    border-radius: 6px;
  }

  .mockup-content {
    padding: 14px;
  }

  .metric-row {
    gap: 8px;
    margin: 14px 0;
  }

  .metric-row article {
    min-height: 78px;
    padding: 10px;
  }

  .metric-row i {
    width: 15px;
    height: 15px;
  }

  .metric-row strong {
    margin-top: 8px;
    font-size: 0.76rem;
  }

  .metric-row span {
    font-size: 0.69rem;
  }

  .four-grid,
  .product-grid,
  .pricing-grid,
  .trust-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-panel,
  .cta-panel {
    padding: 24px;
  }

  .mockup-title {
    align-items: center;
    gap: 10px;
  }

  .mockup-title small {
    font-size: 0.7rem;
  }

  .mockup-title strong {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .mockup-title span {
    min-width: 46px;
    height: 30px;
    font-size: 0.82rem;
  }

  .chart-card {
    height: 92px;
    padding: 14px;
  }

  .chart-bars {
    gap: 8px;
  }

  .chart-bars span {
    min-width: 10px;
  }

  .task-list {
    gap: 8px;
    margin-top: 12px;
  }

  .task-list span {
    gap: 7px;
    font-size: 0.78rem;
  }

  .task-list i {
    width: 14px;
    height: 14px;
  }

  .orbit-one {
    inset: 34px -10px 36px 40px;
  }

  .orbit-two {
    display: none;
  }

  .pixel-cloud {
    width: 72px;
    height: 56px;
  }

  .cloud-left {
    left: -12px;
    bottom: 36px;
  }

  .pixel-cloud span {
    width: 16px;
    height: 16px;
    border-radius: 3px;
  }

  .pixel-cloud span:nth-child(1) {
    top: 20px;
  }

  .pixel-cloud span:nth-child(2) {
    left: 22px;
    top: 4px;
    width: 24px;
    height: 24px;
  }

  .pixel-cloud span:nth-child(3) {
    left: 48px;
    top: 30px;
  }

  .pixel-cloud span:nth-child(4) {
    left: 18px;
    top: 38px;
    width: 12px;
    height: 12px;
  }

  .brand span {
    font-size: 0.98rem;
  }
}

@media (max-width: 380px) {
  .hero-visual {
    width: 100%;
  }

  .mockup-content {
    padding: 12px;
  }

  .metric-row {
    gap: 6px;
  }

  .metric-row article {
    padding: 8px;
  }

  .metric-row strong {
    font-size: 0.7rem;
  }

  .metric-row span {
    font-size: 0.64rem;
  }

  .chart-bars {
    gap: 6px;
  }
}
