:root {
  --container: 1180px;
  --ink: #111827;
  --ink-soft: #1f2937;
  --slate: #475569;
  --muted: #64748b;
  --line: #dbe3ea;
  --panel: #ffffff;
  --page: #f7fafc;
  --cyan: #0891b2;
  --cyan-bright: #22d3ee;
  --amber: #f59e0b;
  --green: #15803d;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 234, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 312px;
  text-decoration: none;
}

.brand-mark,
.footer-brand .brand-mark {
  display: block;
  width: 64px;
  height: auto;
  flex: 0 0 auto;
}

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

.brand-name {
  display: flex;
  gap: 5px;
  color: #25313f;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name span:last-child {
  color: #456fa5;
}

.brand-tagline {
  width: fit-content;
  border-top: 2px solid #22d3ee;
  color: #111827;
  font-family: Consolas, "Courier New", monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #eef6f8;
  color: #075985;
}

.site-nav .nav-action {
  margin-left: 8px;
  background: var(--ink);
  color: white;
}

.site-nav .nav-action:hover {
  background: #0f172a;
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 56px;
  align-items: stretch;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  min-height: calc(100vh - 84px);
  padding: 72px 0 84px;
}

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

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 20px;
}

.hero-text + .hero-text {
  margin-top: 16px;
}

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

.hero-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #ecfeff;
  color: #075985;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.primary:hover {
  background: #0f172a;
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: #94a3b8;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  margin: 0;
}

.hero-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(15, 23, 42, 0.16));
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 56px;
  border-top: 1px solid var(--line);
}

.intro > p,
.platform-content p,
.contact-band p,
.page-hero p,
.legal-content p,
.support-main p,
.support-contact p,
.product-panel p,
.detail-copy p {
  color: var(--slate);
  font-size: 18px;
}

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

.section-summary {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.capability-section,
.solutions-section,
.proof-section {
  border-top: 1px solid var(--line);
}

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

.capability-card {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 8px;
  background: #ecfeff;
  color: #075985;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-weight: 850;
}

.capability-card:nth-child(2) span {
  background: #fff7ed;
  color: #92400e;
}

.capability-card:nth-child(3) span {
  background: #f0fdf4;
  color: #166534;
}

.capability-card:nth-child(4) span {
  background: #eff6ff;
  color: #1d4ed8;
}

.capability-card p {
  margin: 14px 0 0;
  color: var(--slate);
}

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

.offering-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.offering-card.featured {
  border-top: 5px solid var(--cyan);
}

.offering-card:not(.featured) {
  border-top: 5px solid var(--amber);
}

.offering-card:nth-child(3) {
  border-top-color: var(--green);
}

.offering-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.offering-header.icon-only {
  align-items: flex-start;
}

.offering-card p {
  margin: 16px 0 28px;
  color: var(--slate);
  font-size: 17px;
}

.status-pill.utility {
  background: #fff7ed;
  color: #92400e;
}

.status-pill.custom {
  background: #f0fdf4;
  color: #166534;
}

.custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-family: Consolas, "Courier New", monospace;
  font-size: 18px;
  font-weight: 850;
}

.product-showcase {
  border-top: 1px solid var(--line);
}

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

.product-panel {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.product-panel-featured {
  border-top: 5px solid var(--cyan);
}

.product-panel:not(.product-panel-featured) {
  border-top: 5px solid var(--amber);
}

.solution-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--amber);
  border-radius: 8px;
  background: white;
  padding: 34px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.solution-hero-panel h3 {
  font-size: clamp(34px, 5vw, 56px);
}

.solution-hero-panel p {
  color: var(--slate);
  font-size: 18px;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.product-panel h3 {
  font-size: clamp(30px, 4vw, 42px);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--slate);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: #075985;
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.dimtool-detail {
  border-top: 1px solid var(--line);
}

.downloads-section {
  border-top: 1px solid var(--line);
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--amber);
  border-radius: 8px;
  background: white;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.download-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.download-main h3 {
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.download-main p {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 17px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.detail-copy p:first-child {
  margin-top: 0;
}

.metric-strip {
  display: grid;
  gap: 12px;
}

.metric-strip div,
.control-grid div,
.support-checklist div {
  border-left: 4px solid var(--cyan);
  background: white;
  padding: 18px;
}

.metric-strip div:nth-child(2),
.control-grid div:nth-child(2),
.support-checklist div:nth-child(2) {
  border-color: var(--amber);
}

.metric-strip div:nth-child(3),
.control-grid div:nth-child(3),
.support-checklist div:nth-child(3) {
  border-color: var(--green);
}

.metric-strip strong,
.metric-strip span,
.control-grid strong,
.control-grid span,
.support-checklist strong,
.support-checklist p {
  display: block;
}

.metric-strip span,
.control-grid span,
.command-card p,
.support-checklist p {
  margin-top: 8px;
  color: var(--slate);
}

.dimtool-media {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  margin-top: 34px;
}

.dimtool-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.dimtool-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f8fafc;
}

.dimtool-shot figcaption {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding: 18px;
}

.dimtool-shot figcaption span {
  color: var(--slate);
}

.dimtool-video {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.dimtool-video h3 {
  font-size: clamp(26px, 4vw, 38px);
}

.dimtool-video p:not(.section-label) {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 17px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
  color: #075985;
  padding: 9px 14px;
  font-weight: 850;
  text-decoration: none;
}

.video-link:hover {
  border-color: #94a3b8;
  background: white;
}

.command-set {
  padding-top: 40px;
}

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

.command-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.command-name {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 26px;
  border-radius: 6px;
  background: #eef6f8;
  color: #075985;
  padding: 5px 9px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 850;
}

.production-controls {
  padding-top: 40px;
}

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

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

.featured-solution {
  border-top: 1px solid var(--line);
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.solution-panel h3 {
  margin-top: 14px;
  font-size: clamp(26px, 4vw, 38px);
}

.solution-panel p {
  color: var(--slate);
  font-size: 18px;
}

.solution-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solution-icon {
  display: block;
  width: 64px;
  height: 64px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: #ecfeff;
  color: #075985;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.solution-points div {
  border-left: 4px solid var(--cyan);
  background: #f8fafc;
  padding: 18px;
}

.solution-points div:nth-child(2) {
  border-color: var(--amber);
}

.solution-points div:nth-child(3) {
  border-color: var(--green);
}

.solution-points strong,
.solution-points span {
  display: block;
}

.solution-points span {
  margin-top: 6px;
  color: var(--slate);
}

.tool-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 28px;
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.tool-icon {
  display: block;
  width: 52px;
  height: 52px;
}

.tool-number {
  display: inline-block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.tool-card > .tool-number {
  margin-bottom: 44px;
}

.tool-card p,
.process-list p,
.support-steps p {
  margin: 14px 0 0;
  color: var(--slate);
}

.platform-band,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 84px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--ink);
  color: white;
}

.platform-content p,
.contact-band p {
  color: #cbd5e1;
}

.platform-list {
  display: grid;
  gap: 12px;
}

.platform-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-list span {
  color: var(--cyan-bright);
  font-size: 14px;
  font-weight: 750;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.process-list div {
  border-top: 3px solid var(--cyan);
  padding-top: 18px;
}

.process-list div:nth-child(2) {
  border-color: var(--amber);
}

.process-list div:nth-child(3) {
  border-color: var(--green);
}

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

.proof-grid div {
  border-left: 4px solid var(--cyan);
  background: white;
  padding: 22px;
}

.proof-grid div:nth-child(2) {
  border-color: var(--amber);
}

.proof-grid div:nth-child(3) {
  border-color: var(--green);
}

.proof-grid div:nth-child(4) {
  border-color: #2563eb;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--slate);
}

.contact-band {
  background: #ecfeff;
  color: var(--ink);
}

.contact-band p {
  color: var(--slate);
}

.page-hero {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 42px;
}

.page-hero > * {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.support-main,
.support-contact,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 30px;
}

.support-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.support-steps div {
  border-left: 4px solid var(--cyan);
  padding-left: 18px;
}

.support-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #cffafe;
  color: #075985;
  font-size: 13px;
  font-weight: 850;
}

.product-support {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.support-checklist {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.support-contact a,
.legal-content a,
.site-footer a {
  color: #075985;
}

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

.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.7fr) auto;
  gap: 36px;
  align-items: start;
  padding: 44px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: white;
  color: var(--slate);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.site-footer address {
  font-style: normal;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

@media (max-width: 1060px) {
  .site-header {
    min-height: 78px;
  }

  .brand {
    width: 300px;
  }

  .brand-mark,
  .footer-brand .brand-mark {
    width: 56px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-action {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 900px) {

  .hero,
  .intro,
  .product-grid,
  .solution-hero-panel,
  .detail-layout,
  .dimtool-media,
  .dimtool-video,
  .solution-panel,
  .platform-band,
  .contact-band,
  .support-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .tool-grid,
  .capability-grid,
  .offering-grid,
  .proof-grid,
  .command-grid,
  .control-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .platform-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    width: 224px;
    gap: 9px;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-name {
    font-size: 16px;
    gap: 4px;
  }

  .brand-tagline {
    font-size: 13px;
    letter-spacing: 0.03em;
    padding-top: 3px;
  }

  .hero,
  .section,
  .page-hero,
  .legal-content {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 42px;
  }

  .hero-text,
  .intro > p,
  .platform-content p,
  .contact-band p,
  .page-hero p,
  .legal-content p,
  .support-main p,
  .support-contact p,
  .product-panel p,
  .detail-copy p {
    font-size: 16px;
  }

  .platform-band,
  .contact-band {
    padding-inline: 16px;
  }

  .support-main,
  .support-contact,
  .legal-content {
    padding: 22px;
  }
}
