:root{
  --ink: #14161c;
  --slate: #61697d;
  --slate-deep: #3b4050;
  --slate-pale: #e7e9ee;
  --paper: #f5f6f8;
  --white: #ffffff;
  --indigo: #3d3ff2;
  --indigo-deep: #2a2bc4;
  --green: #35c46a;
  --line: rgba(20,22,28,0.1);
  --line-dark: rgba(255,255,255,0.12);
  --radius: 14px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height:1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}
img, svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
.eyebrow{
  font-family: var(--mono); font-size:12px; letter-spacing:2px; text-transform:uppercase;
  color: var(--indigo); font-weight:500; display:flex; align-items:center; gap:9px;
}
.eyebrow::before{ content:''; width:16px; height:1px; background: var(--indigo); }

h1,h2,h3{ font-family: var(--display); font-weight:600; letter-spacing:-0.02em; color:var(--ink); }

/* reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 0.03s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 0.09s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: 0.27s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; }
}

/* ---------- header shell: floating pill, hides on scroll down ---------- */
.nav-outer{
  position:fixed; top:16px; left:0; right:0; z-index:200;
  padding:0 20px;
  transition: transform 0.35s ease;
}
.nav-outer.is-hidden{ transform: translateY(-130%); }

.nav{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:64px; padding:0 10px 0 22px; gap:24px;
  background:#fff; border-radius:999px;
  box-shadow: 0 10px 30px rgba(20,22,28,0.12), 0 1px 0 rgba(20,22,28,0.04);
}

.nav .wrap{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

body.menu-open .nav{
  background:transparent;
  box-shadow:none;
}
body.menu-open .brand{
  opacity:0;
  pointer-events:none;
}
body.menu-open .nav-cta{
  opacity:0;
  pointer-events:none;
}

.brand{ display:flex; align-items:center; flex-shrink:0; }
.logo-mark{ height:28px; flex-shrink:0; }

/* primary link row — numbered */
.nav-links{ counter-reset: desknavindex; display:flex; align-items:center; gap:4px; font-size:14px; font-weight:500; color: var(--slate-deep); flex:1; justify-content:center; }
.nav-item{ counter-increment: desknavindex; position:relative; }
.nav-link, .nav-link-btn{
  position:relative; display:flex; align-items:center; gap:7px;
  padding:9px 16px; border-radius:999px; background:none; border:none; color: var(--slate-deep);
  font-size:14px; font-weight:500; font-family:inherit; transition: color 0.15s ease, background 0.15s ease;
}
.nav-link::before, .nav-link-btn::before{
  content: counter(desknavindex, decimal-leading-zero);
  font-family: var(--mono); font-size:10px; font-weight:500;
  color: var(--indigo); letter-spacing:0.5px;
}
.nav-link:hover, .nav-link-btn:hover{ color: var(--ink); background: var(--paper); }
.nav-link-btn svg{ width:12px; height:12px; stroke-width:2.5; transition: transform 0.2s ease; }
.nav-item:hover .nav-link-btn svg{ transform: rotate(180deg); }

/* services mega-menu */
.nav-dropdown{
  position:absolute; top:calc(100% + 16px); left:50%; transform: translateX(-50%) translateY(6px);
  width:560px; background:#fff; border:1px solid var(--line); border-radius:16px;
  box-shadow: 0 24px 60px rgba(20,22,28,0.14);
  padding:20px; opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .nav-dropdown{ opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0); }
.dropdown-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:2px; }
.dropdown-link{ display:flex; align-items:flex-start; gap:12px; padding:12px; border-radius:10px; transition: background 0.15s ease; }
.dropdown-link:hover{ background: var(--paper); }
.dropdown-link .icon{
  width:32px; height:32px; border-radius:8px; background: var(--slate-pale); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.dropdown-link .icon svg{ width:16px; height:16px; stroke: var(--slate-deep); }
.dropdown-link strong{ display:block; font-size:13.5px; font-weight:600; color: var(--ink); margin-bottom:2px; }
.dropdown-link span{ display:block; font-size:12px; color: var(--slate); line-height:1.4; }
.dropdown-foot{
  grid-column: 1 / -1; margin-top:8px; padding-top:14px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; padding-left:12px; padding-right:8px;
}
.dropdown-foot span{ font-size:12.5px; color: var(--slate); }
.dropdown-foot a{ font-size:12.5px; font-weight:600; color: var(--indigo); display:flex; align-items:center; gap:5px; }
.dropdown-foot a svg{ width:11px; height:11px; }

/* right side */
.nav-right{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-cta{
  font-size:13.5px; font-weight:600; color:#fff; background: var(--ink);
  padding:11px 20px; border-radius:999px; display:inline-flex; align-items:center; gap:7px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta svg{ width:13px; height:13px; transition: transform 0.2s ease; }
.nav-cta:hover{ background: var(--indigo); box-shadow:0 10px 22px rgba(61,63,242,0.25); }
.nav-cta:hover svg{ transform: translateX(2px); }

/* ---------- mobile toggle ---------- */
.nav-toggle{
  display:none; position:relative; z-index:210;
  width:40px; height:40px; border-radius:50%; border:none; background: var(--paper);
  align-items:center; justify-content:center; flex-shrink:0;
}
.nav-toggle span{
  position:absolute; width:16px; height:1.5px; background: var(--ink); border-radius:2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1){ top:16px; }
.nav-toggle span:nth-child(2){ top:20.5px; }
.nav-toggle span:nth-child(3){ top:25px; }
.nav-toggle.is-open span:nth-child(1){ top:20.5px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:20.5px; transform: rotate(-45deg); }

/* ---------- mobile menu: slides in from the right ---------- */
.mobile-menu{
  counter-reset: navindex;
  position:fixed; top:0; right:0; bottom:0;
  width:100%; z-index:190;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; padding:0 28px;
  background:#fff;
  box-shadow: -20px 0 60px rgba(20,22,28,0.18);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.is-open{ transform: translateX(0); }

.mobile-menu-link{
  counter-increment: navindex;
  display:flex; align-items:baseline; gap:14px;
  padding:16px 6px; font-size:22px; font-weight:600; font-family: var(--display);
  color: var(--ink);
  opacity:0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.15s ease;
}
.mobile-menu-link::before{
  content: counter(navindex, decimal-leading-zero);
  font-family: var(--mono); font-size:11px; font-weight:500;
  color: var(--indigo); letter-spacing:1px; flex-shrink:0;
}
.mobile-menu.is-open .mobile-menu-link{ opacity:1; transform:translateY(0); }
.mobile-menu.is-open .mobile-menu-link:nth-child(1){ transition-delay:.08s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2){ transition-delay:.13s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3){ transition-delay:.18s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4){ transition-delay:.23s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(5){ transition-delay:.28s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(6){ transition-delay:.33s; }
.mobile-menu-link:active{ color: var(--indigo); }

.mobile-menu-cta{
  counter-increment: none;
  margin-top:14px; justify-content:center; text-align:center; border-radius:999px;
  background: var(--ink); color:#fff; font-size:16px; padding:16px 28px;
}
.mobile-menu-cta::before{ content: none; }
.mobile-menu-cta svg{ width:14px; height:14px; }

body.menu-open{ overflow:hidden; }

@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 620px){
  .nav-cta{ padding:9px 16px; font-size:12.5px; gap:5px; }
  .nav-cta svg{ width:11px; height:11px; }
}

/* ---------- hero ---------- */
.hero{ padding: 128px 0 64px; overflow:hidden; position:relative; }
.hero .wrap{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap:56px; align-items:center; }
.hero h1{
  font-size: clamp(38px, 5vw, 58px); line-height:1.05; margin:20px 0 22px; max-width:12ch;
}
.hero h1 .accent{ color: var(--indigo); }
.hero p.lede{ font-size:17px; color: var(--slate-deep); max-width:46ch; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:14px; align-items:center; }
.btn-primary{
  background: var(--ink); color:#fff; font-size:14.5px; font-weight:600;
  padding:14px 26px; border-radius:9px; border:none; display:inline-flex; align-items:center; gap:8px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover{ background: var(--indigo); box-shadow:0 10px 24px rgba(61,63,242,0.28); }
.btn-ghost{
  font-size:14.5px; font-weight:600; color: var(--ink); padding:14px 8px;
  display:inline-flex; align-items:center; gap:7px; border-bottom:1.5px solid var(--ink);
}
.btn-ghost svg{ width:14px; height:14px; transition: transform 0.2s ease; }
.btn-ghost:hover svg{ transform: translateX(3px); }

/* signature element: live systems console */
.console{
  background: linear-gradient(165deg, var(--ink) 0%, var(--slate-deep) 100%);
  border-radius: 18px; padding:26px; color:#fff;
  box-shadow: 0 30px 70px rgba(20,22,28,0.35);
  position:relative;
}
.console::before{
  content:''; position:absolute; inset:0; border-radius:18px; padding:1px;
  background: linear-gradient(165deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none;
}
.console-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.console-title{ font-family: var(--mono); font-size:11.5px; letter-spacing:1.5px; text-transform:uppercase; color: rgba(255,255,255,0.6); }
.console-status{ display:flex; align-items:center; gap:7px; font-family: var(--mono); font-size:11.5px; color: var(--green); }
.console-status .pulse{
  width:8px; height:8px; border-radius:50%; background: var(--green);
  box-shadow:0 0 0 0 rgba(53,196,106,0.6); animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(53,196,106,0.55); }
  70%{ box-shadow:0 0 0 9px rgba(53,196,106,0); }
  100%{ box-shadow:0 0 0 0 rgba(53,196,106,0); }
}
.console-chart{ margin-bottom:20px; }
.console-chart svg{ width:100%; height:64px; }
.console-chart path.line{
  fill:none; stroke: var(--green); stroke-width:2; stroke-linecap:round;
  stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.8s ease forwards 0.4s;
}
.console-chart path.fill{ fill: url(#chartGradient); opacity:0; animation: fadeInFill 1s ease forwards 1.6s; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes fadeInFill{ to{ opacity:1; } }
.console-metrics{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px; border-top:1px solid rgba(255,255,255,0.12); padding-top:18px; }
.console-metric .num{ font-family: var(--display); font-size:22px; font-weight:600; }
.console-metric .lbl{ font-family: var(--mono); font-size:10px; color: rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.8px; margin-top:3px; }

/* ---------- trust strip ---------- */
.trust{ padding:44px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust .wrap{ display:flex; align-items:center; gap:40px; flex-wrap:wrap; }
.trust-label{ font-family:var(--mono); font-size:11.5px; letter-spacing:1px; text-transform:uppercase; color: var(--slate); flex-shrink:0; }
.trust-badges{ display:flex; gap:14px; flex-wrap:wrap; flex:1; }
.trust-badge{
  font-size:13px; font-weight:500; color: var(--slate-deep); background: var(--white);
  border:1px solid var(--line); padding:8px 16px; border-radius:20px;
}

/* ---------- stats band ---------- */
.stats{ background: var(--ink); color:#fff; padding:64px 0; }
.stats .wrap{ display:grid; grid-template-columns: repeat(4, 1fr); gap:32px; }
.stat .num{ font-family: var(--display); font-size:40px; font-weight:600; color:#fff; }
.stat .num .suffix{ color: var(--indigo); }
.stat .lbl{ font-size:13.5px; color: rgba(255,255,255,0.55); margin-top:8px; }

/* ---------- section headers ---------- */
.section{ padding:100px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 38px); margin-top:16px; line-height:1.15; }
.section-head p{ color: var(--slate-deep); font-size:16px; margin-top:14px; max-width:52ch; }

/* ---------- services ---------- */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1px; background: var(--line); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.service-card{
  background:#fff; padding:34px 28px; transition: background 0.2s ease;
}
.service-card:hover{ background: var(--paper); }
.service-card .icon{
  width:42px; height:42px; border-radius:10px; background: var(--slate-pale);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  transition: background 0.2s ease;
}
.service-card:hover .icon{ background: var(--indigo); }
.service-card .icon svg{ width:21px; height:21px; stroke: var(--slate-deep); transition: stroke 0.2s ease; }
.service-card:hover .icon svg{ stroke:#fff; }
.service-card h3{ font-size:17px; margin-bottom:9px; }
.service-card p{ font-size:14px; color: var(--slate-deep); line-height:1.55; }

/* ---------- approach ---------- */
.approach-list{ display:flex; flex-direction:column; }
.approach-item{
  display:grid; grid-template-columns: 90px 1fr; gap:28px; padding:32px 0; border-top:1px solid var(--line);
}
.approach-list .approach-item:last-child{ border-bottom:1px solid var(--line); }
.approach-num{ font-family: var(--mono); font-size:14px; color: var(--indigo); padding-top:4px; }
.approach-item h3{ font-size:19px; margin-bottom:8px; }
.approach-item p{ color: var(--slate-deep); font-size:14.5px; max-width:60ch; }

/* ---------- industries ---------- */
.industries-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.industry-card{
  border:1px solid var(--line); border-radius: var(--radius); padding:26px; background:#fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.industry-card:hover{ border-color: var(--indigo); transform: translateY(-3px); }
.industry-card h3{ font-size:16px; margin-bottom:7px; }
.industry-card p{ font-size:13.5px; color: var(--slate); }

/* ---------- portfolio: Movento spotlight ---------- */
.mv-spotlight{
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap:48px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:44px;
}
.mv-tag{ font-family: var(--mono); font-size:11px; letter-spacing:1px; text-transform:uppercase; color: var(--indigo); margin-bottom:14px; }
.mv-info h3{ font-size: clamp(21px, 2.4vw, 27px); line-height:1.2; margin-bottom:14px; }
.mv-info > p{ font-size:14.5px; color: var(--slate-deep); line-height:1.6; margin-bottom:20px; }
.mv-points{ margin-bottom:26px; }
.mv-points li{
  position:relative; padding-left:22px; font-size:13.5px; color: var(--slate-deep);
  margin-bottom:11px; line-height:1.5;
}
.mv-points li::before{
  content:''; position:absolute; left:0; top:6px; width:9px; height:9px; border-radius:3px;
  background: var(--indigo);
}
.mv-ctas .btn-primary{ background: var(--indigo); }
.mv-ctas .btn-primary:hover{ background: var(--indigo-deep); }

.mv-window-wrap{ position:relative; }
.mv-window-wrap::after{
  content:''; position:absolute; width:280px; height:280px; right:-60px; top:-60px; border-radius:50%;
  background: rgba(61,63,242,0.12); filter: blur(60px); pointer-events:none; z-index:0;
}
.mv-window{
  position:relative; z-index:1; overflow:hidden; border-radius:14px; background:#f8f9fb;
  box-shadow: 0 30px 60px rgba(20,22,28,0.22), 0 0 0 1px rgba(20,22,28,0.06);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s ease;
}
.mv-window:hover{ transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-3px); }
.mv-window-bar{
  height:36px; display:grid; grid-template-columns: 76px 1fr 60px; align-items:center; padding:0 12px;
  background:#eef0f4; border-bottom:1px solid #dfe2e8;
}
.mv-window-dots{ display:flex; gap:5px; }
.mv-window-dots i{ width:7px; height:7px; border-radius:50%; background:#c7cad2; display:block; }
.mv-window-url{
  justify-self:center; padding:5px 16px; border-radius:6px; background:#fff; border:1px solid #e0e2e7;
  font-family: var(--mono); font-size:10.5px; color:#6b7280;
}
.mv-window-body{ padding:20px; }
.mv-route-search{
  display:flex; align-items:center; gap:8px; background:#fff; border:1px solid #e6e8ed; border-radius:10px;
  padding:10px 14px; margin-bottom:16px; font-size:12px; color:#4b5160;
}
.mv-route-search svg{ width:14px; height:14px; stroke:#8b909c; flex-shrink:0; }
.mv-route-search strong{ color: var(--ink); font-weight:600; }
.mv-route-search .mv-arrow{ color:#c7cad2; }
.mv-metric-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:8px; margin-bottom:18px; }
.mv-mini-metric{ padding:10px; border:1px solid #e6e8ed; border-radius:8px; background:#fff; text-align:center; }
.mv-mini-metric strong{ display:block; font-family: var(--display); font-size:14px; color:#191b22; }
.mv-mini-metric span{ display:block; margin-top:3px; font-family: var(--mono); font-size:8px; letter-spacing:0.4px; color:#a0a5af; text-transform:uppercase; }
.mv-routes-label{ font-family: var(--mono); font-size:10px; letter-spacing:0.6px; text-transform:uppercase; color:#9aa0ac; margin-bottom:8px; }
.mv-route-list{ margin-bottom:18px; }
.mv-route-row{
  display:flex; align-items:center; justify-content:space-between; padding:10px 12px; background:#fff;
  border:1px solid #e6e8ed; border-radius:8px; margin-bottom:7px; font-size:12px;
}
.mv-route-row .mv-route-name{ font-weight:600; color:#20232b; }
.mv-route-row .mv-seats{
  font-family: var(--mono); font-size:10px; color: var(--green); background:#eafbf1; padding:3px 8px; border-radius:12px;
}
.mv-route-row .mv-fare{ font-family: var(--mono); font-size:11px; color:#8b909c; }
.mv-capacity-card{ border:1px solid #e6e8ed; border-radius:10px; padding:14px; background:#fff; }
.mv-capacity-top{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:9px; }
.mv-capacity-top strong{ font-family: var(--display); font-size:12.5px; color:#20232b; }
.mv-capacity-top span{ font-family: var(--mono); font-size:11px; color: var(--indigo); font-weight:600; }
.mv-capacity-track{ height:6px; border-radius:4px; background:#eceff3; overflow:hidden; }
.mv-capacity-fill{ height:100%; width:0%; border-radius:4px; background: linear-gradient(90deg, var(--indigo), #6f71ff); transition: width 1.4s cubic-bezier(.2,.8,.2,1); }
.mv-capacity-note{ font-size:10.5px; color:#9aa0ac; margin-top:8px; }

/* ---------- work ---------- */
.work-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.work-card{
  border-radius: var(--radius); padding:32px; min-height:260px; display:flex; flex-direction:column; justify-content:flex-end;
  position:relative; overflow:hidden; color:#fff;
}
.work-card.a{ background: linear-gradient(150deg, #2a2bc4, #3d3ff2 60%, #6f71ff); }
.work-card.b{ background: linear-gradient(150deg, var(--slate-deep), var(--slate) 65%, #8891a6); }
.work-tag{ font-family: var(--mono); font-size:11px; letter-spacing:1px; text-transform:uppercase; opacity:0.75; margin-bottom:10px; }
.work-card h3{ color:#fff; font-size:22px; margin-bottom:10px; max-width:22ch; }
.work-card p{ font-size:13.5px; opacity:0.85; max-width:38ch; }
.work-result{ font-family: var(--mono); font-size:13px; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.25); }

/* ---------- testimonial ---------- */
.testimonial{padding:100px 0; }
.testimonial blockquote{
  font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); font-weight:500; line-height:1.35;
  max-width:820px; color: var(--ink); letter-spacing:-0.01em;
}
.testimonial cite{ display:block; font-style:normal; margin-top:26px; font-size:14px; color: var(--slate-deep); }
.testimonial cite strong{ color: var(--ink); display:block; margin-bottom:2px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--ink), var(--slate-deep));
  border-radius: 20px; padding:64px 56px; margin: 0 32px; color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; font-size: clamp(24px, 3vw, 32px); max-width:16ch; }
.cta-band .btn-primary{ background:#fff; color: var(--ink); }
.cta-band .btn-primary:hover{ background: var(--indigo); color:#fff; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:56px; }
.contact-info h2{ font-size: clamp(26px,3vw,34px); margin-bottom:16px; }
.contact-info p{ color: var(--slate-deep); font-size:15.5px; max-width:40ch; margin-bottom:28px; }
.contact-detail{ font-size:14.5px; margin-bottom:10px; }
.contact-detail strong{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:1px; text-transform:uppercase; color: var(--slate); margin-bottom:3px; }
.form-row{ margin-bottom:16px; }
.form-row label{ display:block; font-size:12.5px; font-weight:600; margin-bottom:6px; color: var(--ink); }
.form-row input, .form-row textarea{
  width:100%; padding:13px 15px; font-size:15px; font-family:inherit; border:1.5px solid var(--line);
  border-radius:9px; background:#fff; transition: border-color 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus{ outline:none; border-color: var(--indigo); }
.form-row textarea{ resize:vertical; min-height:110px; }
.form-success{ background:#eafbf1; border:1px solid var(--green); color:#1a7a3f; padding:14px 16px; border-radius:9px; font-size:14px; margin-bottom:16px; }
.form-error{ background:#fdecea; border:1px solid #d13438; color:#a3231f; padding:14px 16px; border-radius:9px; font-size:14px; margin-bottom:16px; }

/* ---------- footer ---------- */
footer{ border-top:1px solid var(--line); padding:64px 0 32px; margin-top:100px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:56px; }
.footer-brand p{ font-size:13.5px; color: var(--slate); margin-top:14px; max-width:30ch; }
.footer-col h4{ font-family: var(--mono); font-size:11px; letter-spacing:1px; text-transform:uppercase; color: var(--slate); margin-bottom:16px; }
.footer-col a{ display:block; font-size:14px; color: var(--slate-deep); margin-bottom:11px; transition: color 0.15s ease; }
.footer-col a:hover{ color: var(--indigo); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--line); font-size:12.5px; color: var(--slate); flex-wrap:wrap; gap:12px; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:34px; height:34px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:15px; height:15px; stroke: var(--slate-deep); }
.footer-social a:hover{ border-color: var(--indigo); }
.footer-social a:hover svg{ stroke: var(--indigo); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero .wrap{
    grid-template-columns:1fr;
  }

  .product-visual{
    order:-1;
  }

  .services-grid,
  .industries-grid{
    grid-template-columns:1fr 1fr;
  }

  .work-grid{
    grid-template-columns:1fr;
  }

  .mv-spotlight{ grid-template-columns: 1fr; padding:28px; }
  .mv-window-wrap{ order:-1; }

  .stats .wrap{
    grid-template-columns:1fr 1fr;
    row-gap:32px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-top{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 620px){
  .wrap{ padding:0 20px; }
  .services-grid, .industries-grid{ grid-template-columns: 1fr; }
  .approach-item{ grid-template-columns: 1fr; gap:8px; }
  .cta-band{ margin:0 20px; padding:40px 26px; flex-direction:column; align-items:flex-start; }
  .footer-top{ grid-template-columns: 1fr; }
  .console-metrics{ grid-template-columns: 1fr 1fr; row-gap:14px; }
  .mv-metric-row{ grid-template-columns: 1fr 1fr; row-gap:8px; }

  .mv-window-wrap{
    max-width: 92%;
    margin: 0 auto;
  }
  .mv-window-wrap::after{
    width:160px; height:160px; right:-30px; top:-30px;
  }

  /* Hide CTA on mobile */
  .nav-cta{
    display:none !important;
  }

  .console-metrics{
    grid-template-columns:1fr 1fr;
    row-gap:14px;
  }
}

/* =========================================================
   QUBENSOFT — PRODUCT / SOFTWARE VISUAL
   ========================================================= */

.product-visual{
  position:relative;
  overflow:hidden;
  min-height:444px;
  padding:26px;
  border-radius:22px;
  color:#fff;
}

.product-visual::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.11);
}

.product-visual::after{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  right:-210px;
  bottom:-220px;
  border-radius:50%;
  background:rgba(61,63,242,.10);
  filter:blur(70px);
  pointer-events:none;
}

/* ---------- top ---------- */

.product-top{
  position:relative;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.product-label{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--mono);
  font-size:9px;
  letter-spacing:1.6px;
  color:rgba(255,255,255,.48);
}

.product-live{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#35c46a;
  box-shadow:
    0 0 0 0 rgba(53,196,106,.55);
  animation:productPulse 2s infinite;
}

@keyframes productPulse{
  0%{
    box-shadow:0 0 0 0 rgba(53,196,106,.5);
  }
  70%{
    box-shadow:0 0 0 7px rgba(53,196,106,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(53,196,106,0);
  }
}

.product-index{
  font-family:var(--mono);
  font-size:9px;
  letter-spacing:1px;
  color:rgba(255,255,255,.25);
}

/* ---------- stage ---------- */

.product-stage{
  position:relative;
  height:410px;
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.stage-glow{
  position:absolute;
  width:270px;
  height:200px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:rgba(61,63,242,.13);
  filter:blur(65px);
  pointer-events:none;
}

/* ---------- orbit ---------- */

.orbit{
  position:absolute;
  left:50%;
  top:50%;
  border:1px solid rgba(255,255,255,.055);
  border-radius:50%;
  transform:translate(-50%,-50%) rotate(-18deg);
  pointer-events:none;
}

.orbit-1{
  width:370px;
  height:220px;
}

.orbit-2{
  width:450px;
  height:285px;
  transform:translate(-50%,-50%) rotate(25deg);
}

/* ---------- browser window ---------- */

.product-window{
  position:relative;
  z-index:5;
  width:88%;
  max-width:470px;
  overflow:hidden;
  border-radius:12px;
  background:#f8f9fb;
  box-shadow:
    0 28px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.12);
  transform:
    perspective(1000px)
    rotateX(2deg)
    rotateY(-3deg);
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.product-window:hover{
  transform:
    perspective(1000px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(-3px);
  box-shadow:
    0 35px 75px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.16);
}

/* ---------- browser bar ---------- */

.window-bar{
  height:34px;
  display:grid;
  grid-template-columns:80px 1fr 80px;
  align-items:center;
  padding:0 10px;
  background:#eef0f4;
  border-bottom:1px solid #dfe2e8;
}

.window-dots{
  display:flex;
  align-items:center;
  gap:5px;
}

.window-dots i{
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#c7cad2;
}

.window-url{
  justify-self:center;
  padding:4px 18px;
  min-width:150px;
  text-align:center;
  border-radius:5px;
  background:#fff;
  border:1px solid #e0e2e7;
  font-family:var(--mono);
  font-size:6.5px;
  color:#8a909c;
}

.window-secure{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:4px;
  font-family:var(--mono);
  font-size:6px;
  color:#8b909a;
}

.window-secure span{
  width:4px;
  height:4px;
  border-radius:50%;
  background:#35c46a;
}

/* ---------- app ---------- */

.window-body{
  display:flex;
  min-height:305px;
}

/* sidebar */

.window-sidebar{
  width:48px;
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:14px 0;
  background:#15171e;
}

.sidebar-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin-bottom:6px;
  border-radius:6px;
  background:#3d3ff2;
  color:#fff;
  font-family:var(--display);
  font-size:10px;
  font-weight:600;
}

.sidebar-icon{
  position:relative;
  width:15px;
  height:15px;
  border-radius:4px;
  background:rgba(255,255,255,.13);
}

.sidebar-icon.active{
  background:#3d3ff2;
  box-shadow:
    0 5px 14px rgba(61,63,242,.35);
}

.sidebar-icon.active::after{
  content:"";
  position:absolute;
  right:-9px;
  top:3px;
  width:2px;
  height:9px;
  border-radius:2px;
  background:#3d3ff2;
}

.sidebar-bottom{
  margin-top:auto;
}

/* content */

.window-content{
  flex:1;
  padding:17px;
  background:#f8f9fb;
}

/* heading */

.window-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:15px;
}

.window-heading span{
  display:block;
  margin-bottom:3px;
  font-family:var(--mono);
  font-size:6px;
  letter-spacing:.8px;
  color:#a0a5af;
}

.window-heading strong{
  display:block;
  font-family:var(--display);
  font-size:12px;
  font-weight:600;
  color:#181a21;
}

.heading-status{
  display:flex;
  align-items:center;
  gap:4px;
  padding:4px 6px;
  border-radius:4px;
  background:#eaf8ef;
  font-family:var(--mono);
  font-size:5.5px;
  color:#299451;
}

.heading-status span{
  width:4px;
  height:4px;
  margin:0;
  border-radius:50%;
  background:#35c46a;
}

/* ---------- metrics ---------- */

.metric-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:7px;
  margin-bottom:12px;
}

.mini-metric{
  padding:8px;
  border:1px solid #e6e8ed;
  border-radius:6px;
  background:#fff;
}

.mini-metric span{
  display:block;
  margin-bottom:3px;
  font-family:var(--mono);
  font-size:5px;
  letter-spacing:.5px;
  color:#a0a5af;
}

.mini-metric strong{
  display:block;
  font-family:var(--display);
  font-size:10px;
  color:#191b22;
}

.mini-metric small{
  display:block;
  margin-top:2px;
  font-family:var(--mono);
  font-size:5px;
  color:#35a75f;
}

/* ---------- chart ---------- */

.fake-chart-wrap{
  padding:10px;
  border:1px solid #e6e8ed;
  border-radius:6px;
  background:#fff;
}

.chart-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  font-family:var(--mono);
  font-size:6px;
  color:#8e949e;
}

.chart-period{
  display:flex;
  gap:3px;
}

.chart-period span{
  padding:3px 5px;
  border-radius:3px;
  color:#a0a5af;
}

.chart-period .selected{
  background:#eef0ff;
  color:#3d3ff2;
}

.fake-chart{
  position:relative;
  height:78px;
}

.chart-grid{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.chart-grid span{
  display:block;
  width:100%;
  height:1px;
  background:#eef0f3;
}

.fake-chart svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.chart-fill{
  fill:url(#productChartFill);
}

.chart-line{
  fill:none;
  stroke:#3d3ff2;
  stroke-width:2;
  stroke-linecap:round;
  stroke-dasharray:600;
  stroke-dashoffset:600;
  animation:
    productChartDraw 1.8s ease forwards .4s;
}

@keyframes productChartDraw{
  to{
    stroke-dashoffset:0;
  }
}

/* ---------- CRM deal list ---------- */

.deal-list-wrap{
  padding:10px;
  border:1px solid #e6e8ed;
  border-radius:6px;
  background:#fff;
}

.deal-list-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  font-family:var(--mono);
  font-size:6px;
  letter-spacing:.5px;
  color:#8e949e;
}

.deal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:7px 8px;
  border:1px solid #e6e8ed;
  border-radius:6px;
  margin-bottom:6px;
  background:#fbfbfc;
}

.deal-row:last-child{ margin-bottom:0; }

.deal-main{
  display:flex;
  align-items:center;
  gap:7px;
  min-width:0;
}

.deal-avatar{
  width:16px;
  height:16px;
  border-radius:50%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--display);
  font-size:6px;
  font-weight:600;
  color:#fff;
}

.deal-info{ min-width:0; }

.deal-info strong{
  display:block;
  font-family:var(--display);
  font-size:7px;
  font-weight:600;
  color:#20232b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:120px;
}

.deal-info span{
  display:block;
  margin-top:1px;
  font-family:var(--mono);
  font-size:5.5px;
  color:#a0a5af;
}

.deal-side{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}

.deal-value{
  font-family:var(--mono);
  font-size:6.5px;
  color:#585e6b;
}

.deal-stage{
  font-family:var(--mono);
  font-size:5px;
  letter-spacing:.4px;
  text-transform:uppercase;
  padding:3px 6px;
  border-radius:10px;
}

.stage-qualified{ background:#eef0ff; color:#3d3ff2; }
.stage-proposal{ background:#fff4e2; color:#b8790a; }
.stage-won{ background:#eafbf1; color:#1f9d54; }

.pipeline-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:9px;
  padding-top:9px;
  border-top:1px solid #eef0f3;
}

.pipeline-summary strong{
  font-family:var(--display);
  font-size:8px;
  color:#20232b;
}

.pipeline-summary span{
  font-family:var(--mono);
  font-size:6px;
  color:#a0a5af;
}

.rep-avatars{
  display:flex;
  align-items:center;
}

.rep-avatars .deal-avatar{
  margin-left:-5px;
  border:1.5px solid #fff;
}

.rep-avatars .deal-avatar:first-child{ margin-left:0; }

/* ---------- bottom ---------- */

.window-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid #e7e9ed;
}

.bottom-project{
  display:flex;
  align-items:center;
  gap:6px;
}

.project-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#35c46a;
}

.bottom-project strong{
  display:block;
  font-family:var(--display);
  font-size:7px;
  color:#30333b;
}

.bottom-project small{
  display:block;
  font-family:var(--mono);
  font-size:5px;
  color:#a0a5af;
}

.bottom-stack{
  display:flex;
  gap:4px;
}

.bottom-stack span{
  padding:4px 5px;
  border:1px solid #e4e6ea;
  border-radius:3px;
  font-family:var(--mono);
  font-size:5px;
  color:#858b96;
}

/* ---------- technology nodes ---------- */

.tech-node{
  position:absolute;
  z-index:7;
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.18);
}

.tech-node span{
  font-family:var(--mono);
  font-size:7px;
  letter-spacing:.5px;
  color:rgba(255,255,255,.65);
}

.node-web{
  left:2%;
  top:30%;
  animation:floatNode 4s ease-in-out infinite;
}

.node-api{
  right:4%;
  top:34%;
  animation:floatNode 4.5s ease-in-out infinite .4s;
}

.node-cloud{
  right:12%;
  bottom:8%;
  animation:floatNode 5s ease-in-out infinite .8s;
}

@keyframes floatNode{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-7px);
  }
}

/* ---------- bottom capabilities ---------- */

.product-bottom{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.1);
}

.product-bottom > div{
  padding:0 15px;
  border-right:1px solid rgba(255,255,255,.09);
}

.product-bottom > div:first-child{
  padding-left:0;
}

.product-bottom > div:last-child{
  border-right:0;
}

.product-bottom strong{
  display:block;
  font-family:var(--display);
  font-size:10px;
  font-weight:500;
  color:rgba(255,255,255,.85);
}

.product-bottom span{
  display:block;
  margin-top:3px;
  font-family:var(--mono);
  font-size:7px;
  color:rgba(255,255,255,.35);
}

/* ================= GLASS BUSINESS CARD ================= */
.card-stage{
  position:relative;
  height:410px;
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1200px;
}

.card-orbit{
  position:absolute;
  left:50%; top:50%;
  border:1px solid rgba(255,255,255,.06);
  border-radius:50%;
  transform:translate(-50%,-50%) rotate(-14deg);
  pointer-events:none;
}
.card-orbit.o1{ width:360px; height:230px; }
.card-orbit.o2{ width:440px; height:290px; transform:translate(-50%,-50%) rotate(20deg); }

.card-glow-spot{
  position:absolute;
  width:280px; height:200px;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(61,63,242,.22), transparent 70%);
  filter:blur(50px);
  pointer-events:none;
}

.biz-card-wrap{
  --shadow-scale:1;
  position:relative;
  z-index:5;
  width:340px;
  max-width:86%;
  aspect-ratio: 16 / 9.6;
  transform-style:preserve-3d;
}

.biz-card-shadow{
  position:absolute;
  left:6%; right:6%; bottom:-26px;
  height:34px;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 72%);
  filter:blur(10px);
  transform:scale(var(--shadow-scale));
  transition:transform .35s ease;
  pointer-events:none;
}

.biz-card{
  --tiltX:8deg;
  --tiltY:-14deg;
  --mx:50%;
  --my:30%;
  position:relative;
  width:100%; height:100%;
  display:flex; flex-direction:column;
  border-radius:20px;
  padding:24px 26px 20px;
  transform-style:preserve-3d;
  transform: rotateX(var(--tiltX)) rotateY(var(--tiltY));
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.02) 40%, rgba(255,255,255,.07) 100%),
    linear-gradient(160deg, rgba(32,34,45,.92), rgba(13,14,19,.96));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 30px 60px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.35);
  overflow:hidden;
  cursor:pointer;
}

.biz-card-shine{
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.38), transparent 42%);
  mix-blend-mode:overlay;
  opacity:0;
  transition: opacity .3s ease;
  pointer-events:none;
}
.biz-card:hover .biz-card-shine{ opacity:1; }

.biz-card-sweep{
  position:absolute;
  top:-60%; left:-60%;
  width:55%; height:220%;
  background: linear-gradient(75deg, transparent, rgba(255,255,255,.14), transparent);
  transform: rotate(20deg);
  animation: cardSweep 6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes cardSweep{
  0%{ left:-60%; }
  42%{ left:120%; }
  100%{ left:120%; }
}

.biz-card-top{
  position:relative; z-index:2;
  display:flex; align-items:flex-start; justify-content:space-between;
}

.biz-card-logo{ display:flex; align-items:center; gap:9px; }
.biz-card-logo .mark{
  width:30px; height:30px; border-radius:8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(150deg, #4d4fff, #2a2bc4);
  color:#fff; font-family:var(--display); font-size:14px; font-weight:700;
  box-shadow:0 6px 16px rgba(61,63,242,.45), inset 0 1px 0 rgba(255,255,255,.35);
}
.mark-img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.biz-card-logo .word{
  font-family:var(--display); font-size:13px; font-weight:600; letter-spacing:.4px; color:#fff;
}
.biz-card-logo .word small{
  display:block; margin-top:1px; font-family:var(--mono); font-size:7px; letter-spacing:1.5px;
  color:rgba(255,255,255,.45); text-transform:uppercase; font-weight:500;
}

.biz-card-chip{
  width:32px; height:23px; border-radius:5px; flex-shrink:0;
  background: linear-gradient(135deg, #ecd18a, #b8912f 55%, #ecd18a);
  position:relative; overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}
.biz-card-chip::before, .biz-card-chip::after{ content:''; position:absolute; background:rgba(0,0,0,.2); }
.biz-card-chip::before{ left:0; right:0; top:50%; height:1px; transform:translateY(-50%); }
.biz-card-chip::after{ top:0; bottom:0; left:50%; width:1px; transform:translateX(-50%); }

.biz-card-mid{
  position:relative; z-index:2;
  flex:1;
  display:flex; flex-direction:column; justify-content:center;
}
.biz-card-name{
  font-family:var(--display); font-size:21px; font-weight:600; color:#fff; letter-spacing:-.01em;
}
.biz-card-title{
  margin-top:4px; font-family:var(--mono); font-size:9.5px; letter-spacing:1.4px;
  text-transform:uppercase; color:#9a9dff;
}

.biz-card-bottom{
  position:relative; z-index:2;
  padding-top:12px;
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.14);
}
.biz-card-bottom span{
  font-family:var(--mono); font-size:8.5px; letter-spacing:.5px; color:rgba(255,255,255,.55);
}
.biz-card-bottom .dot-row{ display:flex; gap:4px; }
.biz-card-bottom .dot-row i{ width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.3); }

@media (max-width:620px){
  .card-stage{ height:330px; perspective:900px; }
  .biz-card-wrap{ width:290px; }
  .biz-card{ padding:20px 20px 16px; border-radius:16px; }
  .biz-card-name{ font-size:18px; }
  .card-orbit.o1{ width:280px; height:180px; }
  .card-orbit.o2{ width:340px; height:220px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:620px){
  .product-visual{
    min-height:505px;
    padding:20px;
    border-radius:18px;
  }

  .product-stage{
    height:360px;
  }

  .product-window{
    width:94%;
  }

  .orbit-1{
    width:310px;
    height:190px;
  }

  .orbit-2{
    width:360px;
    height:230px;
  }

  .tech-node{
    width:32px;
    height:32px;
  }

  .tech-node span{
    font-size:6px;
  }

  .node-web{
    left:0;
  }

  .node-api{
    right:0;
  }

  .node-cloud{
    right:3%;
    bottom:4%;
  }

  .product-bottom{
    grid-template-columns:1fr;
    gap:9px;
  }

  .product-bottom > div{
    padding:0 0 9px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .product-bottom > div:last-child{
    border-bottom:0;
    padding-bottom:0;
  }
}