
:root {
  --ink: #050505;
  --ink-2: #0b0b0d;
  --paper: #f7f7f2;
  --paper-2: #dfdfd5;
  --muted: rgba(247, 247, 242, 0.72);
  --muted-2: rgba(247, 247, 242, 0.52);
  --line: rgba(247, 247, 242, 0.14);
  --line-strong: rgba(247, 247, 242, 0.32);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-2: rgba(255, 255, 255, 0.09);
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.45);
  --radius-xl: 42px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(255,255,255,.09), transparent 30%),
    radial-gradient(circle at 62% 45%, rgba(255,255,255,.05), transparent 36%),
    linear-gradient(180deg, #040404 0%, #0b0b0d 46%, #050505 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: .36;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .045;
  z-index: -1;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--paper); color: var(--ink); }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section.tight { padding-top: 46px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .52fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading.centered {
  display: block;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 46px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 0 20px rgba(255,255,255,.75);
}
h1, h2, h3, h4 { margin: 0; letter-spacing: -.052em; line-height: .94; }
h1 { font-size: clamp(3.3rem, 8.6vw, 8.6rem); max-width: 1080px; }
h2 { font-size: clamp(2.35rem, 5.3vw, 5.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2.06rem); }
h4 { font-size: 1.04rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: rgba(255,255,255,.74); max-width: 750px; }
.text-balance { text-wrap: balance; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), backdrop-filter .25s var(--ease), transform .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(5,5,5,.76);
  backdrop-filter: blur(22px);
  border-color: var(--line);
}
.nav-shell {
  width: min(1260px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 940;
  letter-spacing: -.08em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.55);
  mix-blend-mode: difference;
}
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 1.07rem; letter-spacing: -.04em; }
.brand-text span { font-size: .75rem; color: var(--muted-2); letter-spacing: .14em; text-transform: uppercase; margin-top: 5px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}
.nav-link {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  font-size: .93rem;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-link:hover, .nav-link.active { background: var(--paper); color: var(--ink); }
.nav-link:hover { transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 999px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: rgba(255,255,255,.06);
  font-weight: 850;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.46); }
.btn.primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.primary:hover { background: #deded6; }
.btn.ghost { border-color: var(--line); background: rgba(255,255,255,.035); }
.btn.small { min-height: 38px; padding: 9px 13px; font-size: .92rem; }
.arrow { width: 18px; height: 18px; display: inline-grid; place-items: center; }

.hero { padding: 84px 0 70px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .82fr);
  align-items: center;
  gap: 44px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.86);
  text-shadow: none;
}
.hero-copy p { margin: 24px 0 0; }
.hero-actions, .cta-actions, .product-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.meta-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: .9rem;
}
.hero-visual { position: relative; min-height: 520px; display: grid; align-items: center; }
.device-console {
  position: relative;
  padding: 12px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.20), transparent 48%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-console::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,.24), transparent 32%, transparent 70%, rgba(255,255,255,.10), transparent);
  animation: spin 11s linear infinite;
  opacity: .5;
}
.device-console::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  background: linear-gradient(180deg, rgba(7,7,8,.94), rgba(11,11,13,.96));
}
.console-top, .console-body { position: relative; z-index: 2; }
.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  color: var(--muted-2);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.console-top span { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.42); }
.console-top strong { margin-left: auto; font-size: .72rem; color: rgba(255,255,255,.58); }
.console-body {
  display: grid;
  grid-template-columns: 1fr .42fr;
  gap: 14px;
  min-height: 410px;
}
.console-main, .console-side > div {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.console-main {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.console-main::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto;
  height: 152px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.15), transparent 62%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.09) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
}
.console-main::after {
  content: "";
  position: absolute;
  right: 42px;
  top: 64px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.78), rgba(255,255,255,.08) 58%, transparent 60%);
  filter: blur(.2px);
}
.tiny-label, .card-kicker, .module-card span, .service-index {
  color: rgba(255,255,255,.54);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 850;
}
.console-main h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); margin-top: 154px; }
.console-main p { margin: 10px 0 0; }
.pulse-line { height: 8px; border-radius: 999px; background: rgba(255,255,255,.08); margin-top: 22px; overflow: hidden; }
.pulse-line span { display: block; height: 100%; width: var(--w); border-radius: inherit; background: rgba(255,255,255,.88); }
.mini-feed { display: grid; gap: 10px; margin-top: 18px; }
.mini-feed span { padding: 11px 12px; border-radius: 15px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); border: 1px solid var(--line); }
.console-side { display: grid; gap: 14px; }
.console-side > div { padding: 18px; display: grid; align-content: space-between; min-height: 120px; }
.console-side strong { color: rgba(255,255,255,.67); }
.console-side span { font-size: 2.3rem; font-weight: 900; letter-spacing: -.07em; }
.orbit-badge {
  position: absolute;
  right: -20px;
  bottom: 20px;
  width: min(330px, 72%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px rgba(0,0,0,.42);
  z-index: 3;
}
.orbit-badge strong { display: block; font-size: 1.06rem; margin-bottom: 8px; }
.orbit-badge span { color: var(--muted); line-height: 1.6; font-size: .92rem; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.43);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(1turn); } }

.logo-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.strip-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 18px 0;
  animation: marquee 30s linear infinite;
}
.strip-track span {
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  padding-left: 20px;
}
.strip-track span::after { content: " /"; color: rgba(255,255,255,.26); margin-left: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .canvas-card, .value-card, .module-card, .process-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.052);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.card::before, .module-card::before, .value-card::before, .canvas-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.13), transparent 42%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.card:hover, .module-card:hover, .value-card:hover, .canvas-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.075); }
.card:hover::before, .module-card:hover::before, .value-card:hover::before, .canvas-card:hover::before { opacity: 1; }
.card h3, .module-card h3, .value-card h3, .canvas-card h3 { margin-top: 18px; }
.card p, .module-card p, .value-card p, .canvas-card p { margin-bottom: 0; }
.card-link {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 850;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.34);
}
.card-media { margin-bottom: 20px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.05); }
.card-number { display: inline-flex; color: rgba(255,255,255,.48); margin-bottom: 12px; }

.product-spotlight, .product-hero-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .82fr);
  gap: 32px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 72% 8%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.spotlight-copy, .product-copy { padding: clamp(24px, 4vw, 52px); }
.spotlight-copy h2, .product-copy h2 { margin-top: 18px; }
.spotlight-visual, .product-screen {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(0,0,0,.26);
  min-height: 400px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.check-list { display: grid; gap: 10px; margin-top: 24px; }
.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
}
.check-list span::before { content: "✓"; width: 22px; height: 22px; border-radius: 999px; background: var(--paper); color: var(--ink); display: grid; place-items: center; font-size: .8rem; font-weight: 900; }

.canvas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.canvas-card.active { background: var(--paper); color: var(--ink); }
.canvas-card.active p, .canvas-card.active span { color: rgba(0,0,0,.62); }
.canvas-card span { display: inline-flex; margin-bottom: 90px; color: rgba(255,255,255,.45); font-weight: 900; }

.page-hero { padding: 78px 0 42px; }
.page-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.48);
  font-size: .92rem;
}
.breadcrumbs a:hover { color: var(--paper); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(3.2rem, 7.6vw, 7.8rem); }
.page-aside {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.052);
}
.page-aside strong { display: block; font-size: 1.15rem; }
.page-aside p { margin-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, .96fr) minmax(320px, .78fr); gap: 34px; align-items: center; }
.rich-text { padding-right: 20px; }
.rich-text h2 { margin-top: 18px; }
.image-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.05);
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.stat strong { display: block; font-size: 1.8rem; letter-spacing: -.06em; }
.stat span { color: var(--muted); }
.values-grid, .module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card span { font-size: 1.7rem; color: rgba(255,255,255,.62); }
.proof-panel {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.proof-panel h2 { margin-top: 18px; font-size: clamp(2rem, 4vw, 4.4rem); }
.proof-grid { display: grid; gap: 12px; }
.proof-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.proof-grid strong { display: block; font-size: 1.1rem; margin-bottom: 6px; }
.proof-grid span { color: var(--muted); }

.service-matrix { display: grid; gap: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(260px, .55fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.052);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.service-row:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.075); }
.service-row h2 { font-size: clamp(1.9rem, 3.7vw, 4rem); }
.service-row p { margin-bottom: 0; }
.service-row ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.service-row li {
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0,0,0,.15);
}
.timeline {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.timeline-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.timeline-row:last-child { border-bottom: 0; }
.timeline-row strong { letter-spacing: -.02em; }
.timeline-row p { margin: 0; }

.product-page-hero { padding-bottom: 28px; }
.product-hero-card { grid-template-columns: minmax(0, .82fr) minmax(340px, .9fr); }
.product-copy h2 { font-size: clamp(3rem, 6vw, 6.6rem); }
.module-card { min-height: 260px; }
.module-card span { display: inline-flex; margin-bottom: 36px; }
.product-lab {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 26px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.14), transparent 32%),
    rgba(255,255,255,.045);
}
.lab-copy h2 { margin-top: 18px; }
.lab-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lab-board div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
}
.lab-board strong { display: block; color: rgba(255,255,255,.45); margin-bottom: 40px; }
.lab-board span { display: block; font-weight: 900; font-size: 1.1rem; }
.lab-board p { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr); gap: 24px; align-items: start; }
.form-card, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.052);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: rgba(255,255,255,.74); font-weight: 800; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  color: var(--paper);
  background: rgba(0,0,0,.24);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
select option { color: #111; }
textarea { min-height: 170px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(255,255,255,.62); box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.form-note { font-size: .9rem; margin: 16px 0 0; }
.contact-card h2 { margin-top: 18px; }
.contact-stack { display: grid; gap: 12px; margin-top: 24px; }
.contact-method {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}
.contact-method span { display: block; color: var(--muted-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 7px; }
.contact-method a, .contact-method strong { color: var(--paper); font-weight: 850; }
.contact-visual { margin-top: 20px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: rgba(0,0,0,.18); }

.cta-box {
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 75% 0%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 58%);
}
.cta-box h2 { margin-top: 18px; max-width: 980px; }
.cta-box p, .cta-box .cta-actions { position: relative; z-index: 2; }

.site-footer { padding: 76px 0 26px; border-top: 1px solid var(--line); background: rgba(0,0,0,.22); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(120px, .55fr)); gap: 30px; }
.footer-brand p { max-width: 360px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badges span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .82rem; }
.footer-col { display: grid; align-content: start; gap: 12px; }
.footer-col h4 { margin-bottom: 6px; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .9rem; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120%);
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8,8,8,.84);
  backdrop-filter: blur(18px);
  color: var(--paper);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
  z-index: 80;
}
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1060px) {
  .header-actions .btn { display: none; }
  .nav-links { position: fixed; left: 14px; right: 14px; top: 76px; flex-direction: column; align-items: stretch; border-radius: 26px; padding: 10px; background: rgba(6,6,7,.94); backdrop-filter: blur(22px); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .22s var(--ease), transform .22s var(--ease); }
  body.nav-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { text-align: center; padding: 14px 16px; }
  .nav-toggle { display: inline-block; }
  .hero-grid, .page-title-row, .product-spotlight, .product-hero-card, .split, .proof-panel, .product-lab, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .orbit-badge { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .card-grid.four, .card-grid, .canvas-grid, .values-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row ul { grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .hero { padding: 58px 0 56px; }
  h1 { font-size: clamp(3.05rem, 17vw, 5.2rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.7rem); }
  .console-body, .card-grid.four, .card-grid, .canvas-grid, .values-grid, .module-grid, .stat-grid, .lab-board, .form-grid { grid-template-columns: 1fr; }
  .console-main::before { height: 118px; }
  .console-main h2 { margin-top: 126px; }
  .console-side { grid-template-columns: repeat(3, 1fr); }
  .console-side > div { min-height: auto; padding: 13px; border-radius: 18px; }
  .console-side span { font-size: 1.45rem; }
  .service-row { grid-template-columns: 1fr; }
  .service-row ul { grid-column: auto; grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; gap: 10px; }
  .spotlight-copy, .product-copy { padding: 18px; }
  .spotlight-visual, .product-screen { min-height: auto; border-radius: 24px; }
  .product-spotlight, .product-hero-card, .product-lab, .proof-panel { padding: 12px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .brand-text span { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-shell { width: min(100% - 22px, 1260px); }
  .btn { width: 100%; }
  .hero-actions, .cta-actions, .product-actions { width: 100%; }
  .console-side { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Maruping colour + motion refresh
   Restrained electric accents, smaller typography, richer interaction.
   -------------------------------------------------------------------------- */
:root {
  --ink: #05060a;
  --ink-2: #090b12;
  --paper: #fbfbf6;
  --paper-2: #e8ecf3;
  --muted: rgba(251, 251, 246, 0.72);
  --muted-2: rgba(251, 251, 246, 0.52);
  --line: rgba(251, 251, 246, 0.15);
  --line-strong: rgba(251, 251, 246, 0.30);
  --glass: rgba(255, 255, 255, 0.065);
  --glass-2: rgba(255, 255, 255, 0.10);
  --accent: #8b5cf6;
  --accent-2: #00d4ff;
  --accent-3: #ffb86c;
  --accent-rgb: 139, 92, 246;
  --accent-2-rgb: 0, 212, 255;
  --accent-3-rgb: 255, 184, 108;
  --accent-glow: 0 0 42px rgba(var(--accent-rgb), .34), 0 0 76px rgba(var(--accent-2-rgb), .14);
  --shadow: 0 30px 96px rgba(0, 0, 0, 0.46);
  --pointer-x: 82%;
  --pointer-y: 14%;
}

body {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(var(--accent-2-rgb), .075), transparent 18%),
    radial-gradient(circle at 9% 7%, rgba(var(--accent-rgb), .20), transparent 28%),
    radial-gradient(circle at 88% 9%, rgba(var(--accent-2-rgb), .14), transparent 29%),
    radial-gradient(circle at 74% 79%, rgba(var(--accent-3-rgb), .10), transparent 33%),
    linear-gradient(180deg, #05060a 0%, #0a0d15 45%, #050506 100%);
}
body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-2-rgb),.075) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .34;
}
body::after {
  background-image: radial-gradient(rgba(var(--accent-2-rgb),.55) 1px, transparent 1px);
  opacity: .045;
  animation: ambientDrift 28s ease-in-out infinite alternate;
}
::selection { background: var(--accent-2); color: #020407; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 0 18px rgba(var(--accent-2-rgb), .45);
  pointer-events: none;
}

.section { padding: 84px 0; }
.section.tight { padding-top: 34px; }
.section-heading { margin-bottom: 38px; }
.section-heading.centered { margin-bottom: 40px; }
h1, h2, h3, h4 { letter-spacing: -.044em; line-height: .98; }
h1 { font-size: clamp(2.85rem, 6.45vw, 6.45rem); max-width: 1000px; }
h2 { font-size: clamp(1.95rem, 3.85vw, 3.95rem); }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.68rem); }
h4 { font-size: 1rem; }
.lead { font-size: clamp(1rem, 1.28vw, 1.16rem); line-height: 1.68; max-width: 720px; }
p { line-height: 1.68; }
.page-hero h1 { font-size: clamp(2.65rem, 5.75vw, 5.65rem); }
.product-copy h2 { font-size: clamp(2.25rem, 4.3vw, 4.6rem); }
.console-main h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
.service-row h2 { font-size: clamp(1.55rem, 2.85vw, 3.05rem); }
.proof-panel h2 { font-size: clamp(1.85rem, 3.25vw, 3.35rem); }

.eyebrow {
  border-color: rgba(var(--accent-2-rgb), .22);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .10), rgba(var(--accent-2-rgb), .055));
  color: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.eyebrow::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(var(--accent-2-rgb), .72);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.site-header.scrolled {
  background: rgba(5, 6, 10, .78);
  border-color: rgba(var(--accent-2-rgb), .16);
  box-shadow: 0 14px 46px rgba(0,0,0,.24);
}
.brand-mark {
  background: linear-gradient(135deg, #ffffff 0%, #dff9ff 38%, #c9b5ff 72%, #ffffff 100%);
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), .22), inset 0 1px 0 rgba(255,255,255,.88);
}
.nav-links { background: rgba(255,255,255,.052); border-color: rgba(var(--accent-2-rgb), .13); }
.nav-link { position: relative; overflow: hidden; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease);
}
.nav-link:hover, .nav-link.active {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(218,250,255,.92));
  color: var(--ink);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover { box-shadow: 0 16px 46px rgba(var(--accent-rgb), .16), inset 0 1px 0 rgba(255,255,255,.12); }
.btn.primary {
  background: linear-gradient(135deg, #ffffff 0%, #bff4ff 44%, #cab5ff 100%);
  color: #05060a;
  border-color: rgba(255,255,255,.78);
  box-shadow: 0 18px 54px rgba(var(--accent-rgb), .22), 0 8px 28px rgba(var(--accent-2-rgb), .08);
}
.btn.primary:hover { background: linear-gradient(135deg, #ffffff 0%, #d9fbff 45%, #d7c8ff 100%); }
.btn.primary::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transform: translateX(-70%) rotate(12deg);
  animation: buttonShine 5.4s ease-in-out infinite;
  pointer-events: none;
}
.btn.ghost:hover { border-color: rgba(var(--accent-2-rgb), .44); background: rgba(var(--accent-2-rgb), .07); }

.hero { padding: 74px 0 62px; overflow: hidden; }
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .18;
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero::before { left: -90px; top: 12%; background: var(--accent); }
.hero::after { right: -80px; bottom: 4%; background: var(--accent-2); animation-delay: -3s; }
.hero-copy h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 0;
  background: linear-gradient(90deg, #ffffff, var(--accent-2) 42%, var(--accent) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 36px rgba(var(--accent-2-rgb), .18);
}
.meta-pill {
  border-color: rgba(var(--accent-2-rgb), .15);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .08), rgba(255,255,255,.035));
}
.meta-pill:hover { border-color: rgba(var(--accent-2-rgb), .38); color: rgba(255,255,255,.86); }

.hero-visual { min-height: 470px; }
.device-console {
  border-color: rgba(var(--accent-2-rgb), .28);
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.18), rgba(var(--accent-2-rgb),.075)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 48%);
  animation: consoleFloat 7s ease-in-out infinite;
}
.device-console::before {
  background: conic-gradient(from 180deg, transparent, rgba(var(--accent-rgb),.48), rgba(var(--accent-2-rgb),.38), transparent 34%, transparent 70%, rgba(var(--accent-3-rgb),.24), transparent);
  animation-duration: 8.5s;
  opacity: .62;
}
.console-top span:nth-child(1) { background: var(--accent-3); }
.console-top span:nth-child(2) { background: var(--accent-2); }
.console-top span:nth-child(3) { background: var(--accent); }
.console-main::before {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), .22), transparent 62%),
    repeating-linear-gradient(90deg, rgba(var(--accent-2-rgb), .12) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  animation: surfaceGlow 4.8s ease-in-out infinite alternate;
}
.console-main::after {
  background: radial-gradient(circle, rgba(var(--accent-2-rgb),.90), rgba(var(--accent-rgb),.20) 58%, transparent 60%);
  box-shadow: var(--accent-glow);
}
.pulse-line span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 28px rgba(var(--accent-2-rgb), .38);
  animation: pulseWidth 3.2s ease-in-out infinite;
}
.mini-feed span { border-color: rgba(var(--accent-2-rgb), .12); }
.mini-feed span:nth-child(1) { box-shadow: inset 3px 0 0 var(--accent); }
.mini-feed span:nth-child(2) { box-shadow: inset 3px 0 0 var(--accent-2); }
.mini-feed span:nth-child(3) { box-shadow: inset 3px 0 0 var(--accent-3); }
.orbit-badge { border-color: rgba(var(--accent-2-rgb), .25); box-shadow: 0 18px 70px rgba(0,0,0,.42), 0 0 44px rgba(var(--accent-rgb), .12); }
.scroll-cue { color: rgba(255,255,255,.52); }
.scroll-cue::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: var(--accent-2);
  animation: cueBounce 1.5s ease-in-out infinite;
}

.logo-strip {
  border-color: rgba(var(--accent-2-rgb), .14);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .07), rgba(var(--accent-2-rgb), .04), rgba(var(--accent-3-rgb), .05));
}
.strip-track { animation-duration: 24s; }
.strip-track span::after { color: rgba(var(--accent-2-rgb), .38); }

.card, .canvas-card, .value-card, .module-card, .process-card, .page-aside, .stat, .proof-grid div, .service-row, .timeline, .lab-board div, .form-card, .contact-card, .contact-method {
  border-color: rgba(251,251,246,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.032));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.card::before, .module-card::before, .value-card::before, .canvas-card::before {
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--accent-2-rgb),.18), rgba(var(--accent-rgb),.10) 24%, transparent 45%);
}
.card:hover, .module-card:hover, .value-card:hover, .canvas-card:hover, .service-row:hover {
  border-color: rgba(var(--accent-2-rgb), .34);
  background: linear-gradient(145deg, rgba(var(--accent-rgb),.11), rgba(var(--accent-2-rgb),.055));
}
.card-kicker, .module-card span, .service-index, .card-number { color: rgba(var(--accent-2-rgb), .78); }
.card-link { border-bottom-color: rgba(var(--accent-2-rgb), .58); }
.card-link:hover { color: var(--accent-2); }
.card-media, .image-frame, .contact-visual { border-color: rgba(var(--accent-2-rgb), .16); }
.card-media img, .image-frame img, .spotlight-visual img, .product-screen img, .contact-visual img { animation: softFloat 7.5s ease-in-out infinite; }

.product-spotlight, .product-hero-card, .proof-panel, .product-lab, .cta-box {
  border-color: rgba(var(--accent-2-rgb), .18);
  background:
    radial-gradient(circle at 16% 8%, rgba(var(--accent-rgb), .16), transparent 30%),
    radial-gradient(circle at 83% 14%, rgba(var(--accent-2-rgb), .12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.032));
}
.spotlight-visual, .product-screen { border-color: rgba(var(--accent-2-rgb), .16); background: rgba(1,3,10,.35); }
.check-list span { border-color: rgba(var(--accent-2-rgb), .14); background: rgba(var(--accent-rgb), .055); }
.check-list span::before { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #05060a; }
.canvas-card.active {
  background: linear-gradient(135deg, #ffffff, #dffaff 46%, #d7c7ff 100%);
  color: #05060a;
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), .20);
}
.canvas-card.active p, .canvas-card.active span { color: rgba(5,6,10,.66); }
.value-card span { color: var(--accent-2); }
.stat strong { color: #ffffff; text-shadow: 0 0 26px rgba(var(--accent-2-rgb), .18); }
.service-row li { border-color: rgba(var(--accent-2-rgb), .12); }
.product-page-hero { padding-bottom: 18px; }

input:focus, textarea:focus, select:focus {
  border-color: rgba(var(--accent-2-rgb), .62);
  box-shadow: 0 0 0 4px rgba(var(--accent-2-rgb), .10), 0 0 34px rgba(var(--accent-rgb), .10);
}
.contact-method:hover { border-color: rgba(var(--accent-2-rgb), .28); }
.footer-badges span { border-color: rgba(var(--accent-2-rgb), .16); background: rgba(var(--accent-rgb), .05); }
.footer-col a:hover { color: var(--accent-2); }
.toast { border-color: rgba(var(--accent-2-rgb), .25); }

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(7px);
  transition: opacity .72s var(--ease), transform .72s var(--ease), filter .72s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@keyframes ambientDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-18px, 22px, 0) scale(1.04); }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(var(--accent-2-rgb), .58); }
  50% { transform: scale(1.35); box-shadow: 0 0 30px rgba(var(--accent-rgb), .68); }
}
@keyframes buttonShine {
  0%, 68%, 100% { transform: translateX(-75%) rotate(12deg); opacity: 0; }
  78% { opacity: .72; }
  92% { transform: translateX(75%) rotate(12deg); opacity: 0; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(24px,-18px,0) scale(1.12); }
}
@keyframes consoleFloat {
  0%, 100% { transform: translateY(0) rotate(.001deg); }
  50% { transform: translateY(-12px) rotate(.35deg); }
}
@keyframes surfaceGlow {
  0% { opacity: .78; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(4px); }
}
@keyframes pulseWidth {
  0%, 100% { width: var(--w); }
  50% { width: min(96%, calc(var(--w) + 12%)); }
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(8px); opacity: 1; }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 1060px) {
  .nav-links { background: rgba(5, 7, 12, .95); border-color: rgba(var(--accent-2-rgb), .18); }
  .hero-visual { min-height: auto; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 50px; }
  h1 { font-size: clamp(2.35rem, 12.5vw, 4.1rem); }
  h2 { font-size: clamp(1.72rem, 8.2vw, 3rem); }
  h3 { font-size: clamp(1.12rem, 5vw, 1.45rem); }
  .page-hero h1 { font-size: clamp(2.15rem, 11vw, 3.75rem); }
  .product-copy h2 { font-size: clamp(1.9rem, 9vw, 3.2rem); }
  .console-main h2 { font-size: clamp(1.85rem, 9vw, 3rem); }
  .hero::before, .hero::after { width: 190px; height: 190px; opacity: .14; }
  .lead { font-size: 1rem; }
}

@media (max-width: 440px) {
  h1 { font-size: clamp(2.15rem, 13vw, 3.45rem); }
  h2 { font-size: clamp(1.65rem, 8.5vw, 2.6rem); }
}



/* --------------------------------------------------------------------------
   Maruping refinement: tone down AI/glassmorphism feel and use subtle
   royalty-free original background illustrations.
   -------------------------------------------------------------------------- */
:root {
  --bg-soft-1: #10141c;
  --bg-soft-2: #141920;
  --surface-soft: rgba(255,255,255,.032);
  --surface-soft-2: rgba(255,255,255,.048);
  --surface-line: rgba(255,255,255,.10);
  --surface-line-strong: rgba(255,255,255,.16);
  --champagne: #d5c29a;
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.10), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(213,194,154,.08), transparent 24%),
    radial-gradient(circle at 52% 56%, rgba(255,255,255,.045), transparent 32%),
    linear-gradient(180deg, #11161d 0%, #0d1219 48%, #0b1016 100%);
}
body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .18;
}
body::after { opacity: .018; animation: none; }

.hero::before, .hero::after { opacity: .08; filter: blur(38px); }
.hero-visual, .page-aside, .card, .canvas-card, .value-card, .module-card, .process-card, .service-row, .proof-panel, .product-spotlight, .product-hero-card, .product-lab, .form-card, .contact-card, .cta-box, .timeline, .lab-board div, .stat, .proof-grid div, .contact-method, .image-frame, .spotlight-visual, .product-screen, .contact-visual, .nav-links {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav-links {
  background: rgba(255,255,255,.038);
  border-color: rgba(255,255,255,.08);
}
.site-header.scrolled {
  background: rgba(10,14,19,.90);
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}

.device-console {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border-color: rgba(255,255,255,.13);
  animation: none;
}
.device-console::before { display: none; }
.device-console::after { background: linear-gradient(180deg, rgba(15,18,24,.98), rgba(13,17,23,.98)); }
.console-main, .console-side > div, .card, .canvas-card, .value-card, .module-card, .process-card, .page-aside, .service-row, .timeline, .lab-board div, .form-card, .contact-card, .contact-method, .proof-grid div, .stat {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.024));
  border-color: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.product-spotlight, .product-hero-card, .proof-panel, .product-lab, .cta-box {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.026));
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 24px 64px rgba(0,0,0,.20);
}
.orbit-badge {
  background: rgba(14,18,24,.92);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
}
.card:hover, .module-card:hover, .value-card:hover, .canvas-card:hover, .service-row:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
}
.eyebrow {
  background: linear-gradient(135deg, rgba(213,194,154,.12), rgba(255,255,255,.04));
  border-color: rgba(213,194,154,.18);
}
.eyebrow::before {
  background: linear-gradient(135deg, #fff6df, var(--champagne));
  box-shadow: 0 0 14px rgba(213,194,154,.26);
  animation: none;
}
.btn.primary {
  background: linear-gradient(135deg, #ffffff 0%, #f1eadb 100%);
  box-shadow: 0 14px 34px rgba(213,194,154,.10);
}
.btn.primary:hover { background: linear-gradient(135deg, #ffffff 0%, #ece4d5 100%); }
.btn.primary::after { opacity: .35; }
.btn.ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(213,194,154,.22); }

/* background illustrations */
.hero, .page-hero { overflow: hidden; }
.page-home .hero::after,
.page-about .page-hero::after,
.page-services .page-hero::after,
.page-products .page-hero::after,
.page-contact .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  filter: none;
  animation: none;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: min(58vw, 920px) auto;
  opacity: .20;
}
.page-home .hero > .container, .page-home .hero > .scroll-cue, .page-about .page-hero > .container, .page-services .page-hero > .container, .page-products .page-hero > .container, .page-contact .page-hero > .container {
  position: relative; z-index: 1;
}
.page-home .hero::after { background-image: url('../images/bg-home-workspace.svg'); }
.page-about .page-hero::after, .page-services .page-hero::after, .page-products .page-hero::after { background-image: url('../images/bg-flow-abstract.svg'); }
.page-contact .page-hero::after { background-image: url('../images/bg-contact-network.svg'); }

/* soften the futuristic extras */
.scroll-cue::after, .console-main::after { opacity: .65; }
.logo-strip { background: rgba(255,255,255,.026); border-color: rgba(255,255,255,.08); }
.strip-track span::after { color: rgba(213,194,154,.28); }
.footer-badges span { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08); }
.reveal { filter: none; }

@media (max-width: 1060px) {
  .page-home .hero::after, .page-about .page-hero::after, .page-services .page-hero::after, .page-products .page-hero::after, .page-contact .page-hero::after {
    background-size: min(84vw, 780px) auto;
    opacity: .16;
  }
}
@media (max-width: 720px) {
  .page-home .hero::after, .page-about .page-hero::after, .page-services .page-hero::after, .page-products .page-hero::after, .page-contact .page-hero::after {
    background-size: 120vw auto;
    background-position: center 24%;
    opacity: .12;
  }
  .orbit-badge { background: rgba(14,18,24,.95); }
}


/* --------------------------------------------------------------------------
   Maruping enterprise luxury edition
   Corporate, high-end agency styling with restrained motion and original
   copyright-free architectural background SVGs.
   -------------------------------------------------------------------------- */
:root {
  --ink: #0f1217;
  --ink-2: #151922;
  --paper: #f7f2e8;
  --paper-2: #d8c8a2;
  --muted: rgba(247,242,232,.72);
  --muted-2: rgba(247,242,232,.54);
  --line: rgba(247,242,232,.13);
  --line-strong: rgba(247,242,232,.22);
  --accent: #c6ab6a;
  --accent-2: #e9deca;
  --accent-3: #8d99aa;
  --accent-rgb: 198,171,106;
  --accent-2-rgb: 233,222,202;
  --accent-3-rgb: 141,153,170;
  --shadow: 0 26px 70px rgba(0,0,0,.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 8%, rgba(247,242,232,.09), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(198,171,106,.12), transparent 28%),
    linear-gradient(180deg, #171a20 0%, #11161d 42%, #0e1217 100%);
}
body::before {
  background-image:
    linear-gradient(rgba(247,242,232,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,242,232,.026) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .18;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
body::after { display: none; }

h1, h2, h3, h4 {
  letter-spacing: -.035em;
  line-height: 1.02;
}
h1 { font-size: clamp(2.8rem, 5.8vw, 5.9rem); max-width: 980px; }
h2 { font-size: clamp(1.95rem, 3.35vw, 3.45rem); }
h3 { font-size: clamp(1.17rem, 1.45vw, 1.48rem); }
.page-hero h1 { font-size: clamp(2.55rem, 5vw, 5.15rem); }
.product-copy h2 { font-size: clamp(2.15rem, 3.8vw, 4.1rem); }
.lead, p { line-height: 1.72; }

.site-header.scrolled {
  background: rgba(17,20,26,.92);
  border-color: rgba(247,242,232,.10);
  box-shadow: 0 14px 36px rgba(0,0,0,.20);
}
.nav-shell { padding-block: 18px; }
.brand-mark {
  background: linear-gradient(135deg, #f7f2e8, #d5bc7c);
  color: #11161d;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 30px rgba(0,0,0,.2);
}
.brand-text strong { letter-spacing: -.03em; }
.brand-text span { color: rgba(247,242,232,.56); }
.nav-links {
  background: rgba(255,255,255,.028);
  border-color: rgba(247,242,232,.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.nav-link { color: rgba(247,242,232,.70); }
.nav-link::after { background: linear-gradient(90deg, transparent, var(--accent), transparent); bottom: 5px; }
.nav-link:hover, .nav-link.active {
  background: rgba(247,242,232,.08);
  color: var(--paper);
}

.eyebrow {
  background: rgba(247,242,232,.045);
  border-color: rgba(198,171,106,.25);
  color: rgba(247,242,232,.84);
  letter-spacing: .16em;
}
.eyebrow::before {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(198,171,106,.36);
}
.btn {
  border-color: rgba(247,242,232,.16);
  background: rgba(247,242,232,.045);
  color: var(--paper);
  box-shadow: none;
}
.btn:hover {
  background: rgba(247,242,232,.07);
  border-color: rgba(198,171,106,.38);
  box-shadow: 0 14px 36px rgba(0,0,0,.16);
}
.btn.primary {
  background: linear-gradient(135deg, #f8f0df, #c8ad70);
  color: #12161c;
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 18px 42px rgba(0,0,0,.16), 0 0 0 1px rgba(198,171,106,.10);
}
.btn.primary:hover { background: linear-gradient(135deg, #fff8e9, #d2ba82); }
.btn.primary::after { animation-duration: 8s; opacity: .22; }

.hero { padding: 86px 0 72px; }
.hero::before, .hero::after { animation: none; filter: none; opacity: 1; }
.page-home .hero::after,
.page-about .page-hero::after,
.page-services .page-hero::after,
.page-products .page-hero::after,
.page-contact .page-hero::after {
  opacity: .22;
  background-size: min(62vw, 980px) auto;
  background-position: right 44%;
}
.page-home .hero::after { background-image: url('../images/bg-enterprise-luxury-hero.svg'); }
.page-about .page-hero::after, .page-services .page-hero::after { background-image: url('../images/bg-enterprise-architecture.svg'); }
.page-products .page-hero::after { background-image: url('../images/bg-editorial-grid.svg'); }
.page-contact .page-hero::after { background-image: url('../images/bg-luxury-contact.svg'); }
.hero-copy h1 .stroke {
  color: var(--accent-2);
  background: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.hero-meta { margin-top: 30px; }
.meta-pill {
  border-color: rgba(198,171,106,.18);
  background: rgba(247,242,232,.036);
  color: rgba(247,242,232,.70);
}
.hero-visual { min-height: 450px; }
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(247,242,232,.07), rgba(247,242,232,.024));
  border: 1px solid rgba(247,242,232,.12);
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198,171,106,.22);
  border-radius: 24px;
  pointer-events: none;
}
.hero-card img { animation: none; opacity: .94; }
.orbit-badge {
  background: rgba(18,22,28,.94);
  border-color: rgba(198,171,106,.18);
  box-shadow: 0 20px 48px rgba(0,0,0,.24);
}
.scroll-cue { color: rgba(247,242,232,.44); }
.scroll-cue::after { background: var(--accent); animation: none; opacity: .7; }

.logo-strip {
  background: rgba(247,242,232,.026);
  border-color: rgba(247,242,232,.08);
}
.strip-track { animation-duration: 36s; }
.strip-track span {
  color: rgba(247,242,232,.58);
  letter-spacing: .20em;
}
.strip-track span::after { color: rgba(198,171,106,.42); }

.section { padding: 86px 0; }
.section.tight { padding-top: 42px; }
.section-heading { margin-bottom: 38px; }
.card, .canvas-card, .value-card, .module-card, .process-card, .page-aside, .service-row, .timeline, .lab-board div, .form-card, .contact-card, .contact-method, .proof-grid div, .stat, .image-frame, .spotlight-visual, .product-screen, .contact-visual, .feature-panel, .feature-item {
  background: linear-gradient(180deg, rgba(247,242,232,.045), rgba(247,242,232,.022));
  border-color: rgba(247,242,232,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.card, .canvas-card, .value-card, .module-card, .process-card { padding: 30px; }
.card::before, .module-card::before, .value-card::before, .canvas-card::before { display: none; }
.card:hover, .module-card:hover, .value-card:hover, .canvas-card:hover, .service-row:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(247,242,232,.058), rgba(247,242,232,.026));
  border-color: rgba(198,171,106,.30);
}
.card-media, .image-frame, .contact-visual, .spotlight-visual, .product-screen {
  background: rgba(10,13,18,.34);
  border-color: rgba(198,171,106,.13);
}
.card-media img, .image-frame img, .spotlight-visual img, .product-screen img, .contact-visual img { animation: none; }
.card-number, .card-kicker, .module-card span, .service-index { color: rgba(198,171,106,.84); }
.card-link { border-bottom-color: rgba(198,171,106,.55); }
.card-link:hover { color: #eadab5; }

.product-spotlight, .product-hero-card, .proof-panel, .product-lab, .cta-box {
  background:
    linear-gradient(135deg, rgba(198,171,106,.09), transparent 42%),
    linear-gradient(180deg, rgba(247,242,232,.052), rgba(247,242,232,.022));
  border-color: rgba(198,171,106,.18);
  box-shadow: var(--shadow);
}
.check-list span {
  background: rgba(247,242,232,.038);
  border-color: rgba(247,242,232,.10);
}
.check-list span::before {
  background: var(--accent);
  color: #10151b;
}
.canvas-card.active {
  background: linear-gradient(135deg, #f8f0df, #c8ad70);
  color: #11161d;
  box-shadow: 0 20px 46px rgba(0,0,0,.18);
}
.canvas-card.active p, .canvas-card.active span { color: rgba(17,22,29,.66); }
.value-card span { color: var(--accent); }
.service-row li {
  background: rgba(255,255,255,.025);
  border-color: rgba(198,171,106,.14);
}
.timeline { overflow: hidden; }
.timeline-row { border-color: rgba(247,242,232,.09); }
input, textarea, select { background: rgba(8,11,15,.42); border-color: rgba(247,242,232,.12); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(198,171,106,.55);
  box-shadow: 0 0 0 4px rgba(198,171,106,.09);
}

.site-footer {
  background: linear-gradient(180deg, rgba(12,16,21,.32), rgba(9,12,16,.62));
  border-color: rgba(247,242,232,.10);
}
.footer-badges span {
  background: rgba(247,242,232,.032);
  border-color: rgba(198,171,106,.16);
}
.footer-col a:hover { color: #eadab5; }
.toast { background: rgba(14,18,24,.94); border-color: rgba(198,171,106,.22); }
.reveal { filter: none; transform: translateY(16px); }
.reveal.visible { transform: translateY(0); }
.scroll-progress, .progress-bar { background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2)); box-shadow: none; }

@media (max-width: 1060px) {
  .nav-links { background: rgba(17,20,26,.96); border-color: rgba(198,171,106,.18); }
  .page-home .hero::after,
  .page-about .page-hero::after,
  .page-services .page-hero::after,
  .page-products .page-hero::after,
  .page-contact .page-hero::after { opacity: .15; background-size: min(86vw, 820px) auto; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 54px; }
  h1 { font-size: clamp(2.3rem, 11.5vw, 4rem); }
  h2 { font-size: clamp(1.7rem, 7.7vw, 2.85rem); }
  .page-hero h1 { font-size: clamp(2.05rem, 10vw, 3.55rem); }
  .page-home .hero::after,
  .page-about .page-hero::after,
  .page-services .page-hero::after,
  .page-products .page-hero::after,
  .page-contact .page-hero::after { opacity: .10; background-size: 120vw auto; background-position: center 18%; }
}


/* --- Maruping Technologies brand update and homepage cleanup --- */
.brand { gap: 1; }
.brand-lockup { display: block; height: 48px; width: auto; }
.footer-lockup { height: 56px; }
.site-header .brand { min-width: 0; }
.site-header .brand:hover { opacity: .96; }
.hero-copy .lead, .section-heading .lead { max-width: 60ch; }

.enterprise-section { padding-top: 54px; }
.enterprise-showcase {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.enterprise-lockup { width: min(320px, 82%); margin-bottom: 18px; }
.enterprise-copy h2 { font-size: clamp(2.3rem, 5vw, 4.2rem); margin: 0 0 16px; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.06; }
.enterprise-copy h2 span { color: #C5A468; }
.enterprise-visual-card {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background: radial-gradient(circle at 24% 22%, rgba(197,164,104,.08), transparent 20%), linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(197,164,104,.18);
  box-shadow: 0 32px 100px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.enterprise-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 88px;
  top: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,164,104,.65);
  opacity: .78;
}
.enterprise-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.stage-pedestal {
  position: absolute;
  right: 54px;
  bottom: 112px;
  width: 220px;
  height: 96px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(45,47,52,.96), rgba(15,18,22,.98));
  border: 1px solid rgba(197,164,104,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.stage-pedestal::before {
  content: '';
  position: absolute;
  left: -116px;
  bottom: -34px;
  width: 420px;
  height: 42px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17,18,21,.98), rgba(10,10,12,1));
  box-shadow: 0 10px 24px rgba(0,0,0,.34);
}
.stage-sphere {
  position: absolute;
  right: 10px;
  bottom: 64px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.2), rgba(50,57,67,.45) 28%, #0e141c 72%);
  box-shadow: inset -10px -16px 30px rgba(0,0,0,.42), 0 18px 34px rgba(0,0,0,.38);
}
.device-card {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(33,37,43,.95), rgba(14,17,23,.98));
  box-shadow: 0 22px 54px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
}
.device-browser {
  top: 92px;
  right: 128px;
  width: 360px;
  height: 212px;
}
.device-top { display: flex; gap: 8px; padding: 16px 18px; }
.device-top span { width: 8px; height: 8px; border-radius: 50%; background: rgba(243,238,229,.55); }
.device-content { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: center; padding: 20px 28px 0; }
.device-avatar, .profile-thumb {
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #C5A468 0 10%, #0b1017 12% 100%);
  border: 1px solid rgba(255,255,255,.08);
}
.device-lines, .profile-lines { display: grid; gap: 14px; }
.device-lines span, .profile-lines span, .device-mini-lines span { display: block; height: 8px; border-radius: 999px; background: rgba(243,238,229,.44); }
.device-lines span:nth-child(1), .profile-lines span:nth-child(1) { width: 160px; }
.device-lines span:nth-child(2), .profile-lines span:nth-child(2) { width: 138px; }
.device-lines span:nth-child(3), .profile-lines span:nth-child(3) { width: 118px; }
.device-arrow { font-size: 56px; line-height: 1; color: #C5A468; margin-right: 4px; }
.device-phone {
  top: 76px;
  right: 24px;
  width: 128px;
  height: 258px;
  padding: 26px 24px;
}
.device-chip {
  width: 78px; height: 78px; border-radius: 22px; background: linear-gradient(180deg, rgba(243,238,229,.95), rgba(205,197,186,.92)); margin-bottom: 30px;
}
.device-mini-lines { display: grid; gap: 14px; }
.device-mini-lines span:nth-child(1) { width: 64px; }
.device-mini-lines span:nth-child(2) { width: 58px; }
.device-mini-lines span:nth-child(3) { width: 46px; }
.device-profile {
  left: 34px;
  bottom: 104px;
  width: 342px;
  height: 146px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
}
.enterprise-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.enterprise-value-card {
  padding: 30px 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(197,164,104,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow: 0 22px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}
.enterprise-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.enterprise-badge {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(197,164,104,.9); color: #C5A468;
}
.enterprise-badge svg { width: 28px; height: 28px; }
.enterprise-number { color: #C5A468; font-size: 1.85rem; font-family: Georgia, 'Times New Roman', serif; }
.enterprise-value-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 18px;
}
.enterprise-value-card p {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(197,164,104,.52);
  color: rgba(247,247,242,.74);
}
.footer-brand p { max-width: 380px; }

@media (max-width: 1100px) {
  .enterprise-showcase { grid-template-columns: 1fr; }
  .enterprise-visual-card { min-height: 460px; }
  .enterprise-value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .brand-lockup { height: 40px; }
  .footer-lockup { height: 48px; }
  .enterprise-copy h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .enterprise-visual-card { min-height: 400px; }
  .device-browser { top: 72px; right: 80px; width: 240px; height: 160px; }
  .device-content { grid-template-columns: 40px 1fr auto; gap: 12px; padding: 12px 16px 0; }
  .device-avatar, .profile-thumb { width: 40px; height: 40px; }
  .device-lines span:nth-child(1), .profile-lines span:nth-child(1) { width: 104px; }
  .device-lines span:nth-child(2), .profile-lines span:nth-child(2) { width: 90px; }
  .device-lines span:nth-child(3), .profile-lines span:nth-child(3) { width: 72px; }
  .device-arrow { font-size: 38px; }
  .device-phone { top: 66px; right: 12px; width: 90px; height: 200px; padding: 18px 16px; }
  .device-chip { width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px; }
  .device-profile { left: 16px; bottom: 88px; width: 240px; height: 116px; padding: 16px; grid-template-columns: 48px 1fr; }
  .stage-pedestal { right: 18px; bottom: 94px; width: 154px; height: 76px; }
  .stage-pedestal::before { left: -92px; width: 300px; }
  .stage-sphere { width: 76px; height: 76px; right: 8px; bottom: 54px; }
  .enterprise-ring { width: 220px; height: 220px; right: 72px; top: 34px; }
  .enterprise-value-card { padding: 24px; }
  .enterprise-value-card h3 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}
