:root {
  color-scheme: light;
  --ink: #18212b;
  --muted: #5d6977;
  --line: #d9e0e8;
  --surface: #f5f7f9;
  --surface-strong: #e9eef3;
  --brand: #0f6b63;
  --brand-dark: #0b3f45;
  --accent: #d84c2f;
  --white: #ffffff;
  --hrstek-bright-blue: #087ed8;
  --hrstek-blue: #0459c9;
  --hrstek-royal-blue: #053bbb;
  --hrstek-indigo: #100f8b;
  --hrstek-purple: #17006c;
  --hrstek-gradient: linear-gradient(90deg, #087ed8 0%, #0459c9 28%, #053bbb 55%, #100f8b 78%, #17006c 100%);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
}

body {
  margin: 0;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(16, 15, 139, 0.08);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--hrstek-gradient);
}

.brand {
  display: grid;
  justify-items: start;
  gap: 1px;
  min-width: 220px;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-symbol {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-wordmark {
  width: 118px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
}

.brand-tagline {
  margin-left: 38px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  font-size: 14px;
  color: var(--muted);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.button.primary,
.header-cta {
  border-color: var(--hrstek-indigo);
  background: linear-gradient(135deg, var(--hrstek-blue), var(--hrstek-indigo));
  color: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 64px 56px 72px;
  background: linear-gradient(90deg, #ffffff 0%, #f6f8fa 58%, #e7edf0 100%);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
}

h2 {
  font-size: 36px;
  line-height: 1.18;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

.hero p,
.page-hero p,
.section-header p {
  color: var(--muted);
  font-size: 18px;
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.band,
.split,
.table-section {
  padding: 72px 56px;
}

.band.quiet {
  background: var(--surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card.tall {
  min-height: 320px;
}

.card-kicker {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.card p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-row-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-row-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--surface-strong);
}

.product-row-card h3 {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 48px;
  align-items: start;
}

.list-panel,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.list-row {
  display: grid;
  grid-template-columns: 150px 1fr 100px;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.list-row:last-child {
  border-bottom: 0;
}

.list-row span,
.list-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.page-hero {
  padding: 80px 56px 56px;
  background: var(--surface);
}

.page-hero h1 {
  max-width: 1180px;
  font-size: clamp(40px, 5.2vw, 72px);
}

.page-hero-wide h1 {
  white-space: nowrap;
}

.page-hero p {
  max-width: 980px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface);
  font-size: 14px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.stacked-section {
  display: grid;
  gap: 28px;
  padding: 72px 56px;
}

.content-block {
  max-width: 980px;
}

.content-block p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.contact-card-row {
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: center;
}

.contact-card-row > div:first-child {
  display: grid;
  gap: 10px;
}

.qr-lockup {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.qr {
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-options {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 16px;
}

.contact-options-single {
  display: block;
}

.contact-primary-card,
.contact-info-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-primary-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.contact-options-single .contact-primary-card {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-primary-card p,
.contact-info-card p {
  color: var(--muted);
}

.enterprise-qr {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.contact-qr-grid figure {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
}

.contact-qr-grid figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-info-card dl div {
  display: grid;
  gap: 4px;
}

.contact-info-card dt {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.contact-info-card dd {
  margin: 0;
  color: var(--muted);
}

.contact-info-card a {
  color: var(--brand);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) minmax(280px, 420px);
  gap: 32px;
  padding: 44px 56px;
  border-top: 4px solid var(--hrstek-bright-blue);
  background: linear-gradient(120deg, var(--hrstek-royal-blue) 0%, var(--hrstek-indigo) 48%, var(--hrstek-purple) 100%);
  color: var(--white);
}

.site-footer p,
.site-footer address {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.site-footer address {
  align-self: center;
}

.footer-contact-list {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--white);
  stroke-width: 1.8;
}

.footer-contact-row > span,
.footer-contact-row > a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-row strong {
  color: var(--white);
  font-weight: 700;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 320px);
  margin: 0;
}

.footer-brand strong {
  color: var(--white);
  font-size: 18px;
}

.footer-symbol {
  width: 58px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-wordmark {
  width: min(100%, 236px);
  height: auto;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.footer-slogan {
  width: min(100%, 320px);
  height: auto;
  margin-top: 18px;
}

.footer-qr-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-qr-grid figure {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0;
}

.footer-qr {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: var(--white);
}

.footer-qr-grid figcaption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
    height: 360px;
  }

  .band,
  .split,
  .table-section,
  .page-hero,
  .site-footer {
    padding: 48px 20px;
  }

  .card-grid.three,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .list-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-strong);
}

.muted-card {
  opacity: 0.78;
}

.text-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.split.quiet {
  background: var(--surface);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  padding: 56px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.detail-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  background: var(--surface-strong);
}

.detail-copy {
  padding: 28px 0;
  max-width: 880px;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-strong);
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.detail-side span {
  color: var(--muted);
}

.tag-list.stacked {
  display: grid;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.qr {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (max-width: 920px) {
  .detail-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .detail-side {
    position: static;
  }

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

.empty-state {
  max-width: 760px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.empty-state p {
  color: var(--muted);
  font-size: 17px;
}

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

.access-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.access-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.access-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 21px;
}

.access-card p {
  color: var(--muted);
}

.debug-panel {
  padding: 32px 56px;
  border-top: 1px dashed #94adb7;
  background: #f3f8f8;
}

.debug-panel pre {
  overflow: auto;
}

/* === prototype-style-start === */
:root {
  --ink: #18201d;
  --muted: #667069;
  --line: #d9dfda;
  --surface: #f3f5f1;
  --surface-strong: #e5ebe5;
  --brand: #2a6e5b;
  --brand-dark: #243b33;
  --accent: #bd6531;
}

.solution-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #1b231f;
}

.solution-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.solution-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 32, 29, 0.86) 0%, rgba(24, 32, 29, 0.72) 27%, rgba(24, 32, 29, 0.22) 53%, rgba(24, 32, 29, 0.04) 78%);
}

.solution-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-width: 820px;
  padding: 72px 56px;
}

.solution-hero-copy h1 {
  display: grid;
  gap: 8px;
  font-size: clamp(48px, 7vw, 86px);
}

.solution-hero-copy h1 span {
  display: block;
}

.solution-hero-copy p {
  max-width: none;
  color: #dce5df;
  font-size: 19px;
  line-height: 1.8;
}

.solution-hero-copy > p:not(.eyebrow) {
  max-width: 31em;
}

.solution-hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.solution-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 72px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.solution-intro h2 {
  display: grid;
  gap: 8px;
}

.solution-intro h2 sup {
  font-size: 0.42em;
}

.solution-intro h2.company-logo-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
}

.solution-intro h2.company-logo-lockup img {
  display: block;
  height: auto;
}

.company-logo-symbol {
  width: 132px;
  flex: 0 0 auto;
}

.company-logo-wordmark {
  width: min(100%, 340px);
}

.solution-intro .eyebrow span {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.12em;
}

.solution-intro-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.solution-intro-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.solution-console {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: var(--surface);
}

.solution-tabs {
  display: grid;
  align-content: start;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.solution-tab {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.solution-tab:last-child {
  border-bottom: 1px solid var(--line);
}

.solution-tab span {
  color: var(--muted);
  font-size: 12px;
}

.solution-tab strong {
  font-size: 18px;
}

.solution-tab.active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: var(--white);
}

.solution-tab.active span {
  color: #c9d8d0;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  padding: 40px;
  background: var(--white);
}

.solution-panel-media {
  min-height: 560px;
  overflow: hidden;
  background: var(--surface-strong);
}

.solution-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-panel article {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

.solution-body {
  max-width: 720px;
  max-height: none;
  margin-top: 18px;
  padding: 18px 20px;
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border-left: 3px solid var(--brand);
  background: var(--surface);
  color: var(--muted);
  line-height: 1.9;
}

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

.solution-body strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.solution-body span {
  white-space: pre-line;
}

.solution-body::-webkit-scrollbar {
  width: 10px;
}

.solution-body::-webkit-scrollbar-track {
  background: #e1e7e1;
}

.solution-body::-webkit-scrollbar-thumb {
  background: #8da299;
  border-radius: 999px;
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: auto 0 24px;
}

.solution-capabilities:empty {
  display: none;
}

.solution-flow span {
  padding: 12px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.solution-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.solution-capabilities span {
  padding: 7px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-capability-band,
.solution-story {
  padding: 72px 56px;
}

.solution-capability-band {
  background: var(--surface);
}

.solution-story-card span,
.solution-bottom span {
  display: block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.solution-story {
  display: grid;
  gap: 32px;
}

.solution-story-grid {
  display: grid;
  gap: 14px;
  max-height: 680px;
  overflow: auto;
  padding-right: 8px;
}

.solution-story-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 188px;
  border: 1px solid var(--line);
  background: var(--white);
}

.solution-story-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.solution-story-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
}

.solution-story-card span {
  margin-bottom: 8px;
}

.solution-story-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.3;
}

.solution-story-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.solution-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: center;
  min-height: 220px;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.solution-contact-card address {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

.solution-contact-card a {
  color: var(--brand);
  font-weight: 800;
}

.contact-qr {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.solution-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 56px 72px;
  align-items: stretch;
}

.solution-bottom article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.solution-bottom strong {
  display: block;
  margin: 10px 0 16px;
  font-size: 22px;
  line-height: 1.35;
}

.solution-bottom a {
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .brand {
    min-width: 0;
  }

  .brand-symbol {
    width: 28px;
    height: 28px;
  }

  .brand-wordmark {
    width: 108px;
  }

  .brand-tagline {
    margin-left: 36px;
  }

  .solution-intro h2.company-logo-lockup {
    gap: 14px;
  }

  .company-logo-symbol {
    width: 92px;
  }

  .company-logo-wordmark {
    width: min(100%, 250px);
  }

  .solution-intro,
  .solution-console,
  .solution-panel,
  .solution-story,
  .solution-story-grid,
  .solution-story-card,
  .product-row-card,
  .contact-options,
  .contact-primary-card,
  .solution-bottom,
  .solution-flow,
  .solution-contact-card,
  .contact-card-row,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .solution-hero-copy,
  .solution-intro,
  .solution-story,
  .solution-capability-band,
  .solution-bottom,
  .stacked-section,
  .debug-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-hero-wide h1 {
    white-space: normal;
  }

  .solution-tabs,
  .solution-panel {
    padding: 20px;
  }

  .solution-panel-media {
    min-height: 320px;
  }

  .solution-story-card img {
    height: 220px;
  }

  .product-row-card img {
    height: 220px;
  }

  .contact-primary-card {
    padding: 24px;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-qr {
    max-width: 220px;
  }
}

@media (max-width: 600px) {
  .site-header {
    gap: 14px;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    font-size: 13px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .solution-hero-copy h1 {
    font-size: 42px;
  }

}
/* === prototype-style-end === */
