:root {
  color-scheme: light;
  --ink: #0f1c2e;
  --muted: #607086;
  --line: #d7e2ef;
  --surface: #f5f8fc;
  --surface-2: #eaf1f8;
  --panel: rgba(255, 255, 255, 0.9);
  --navy: #071827;
  --navy-2: #0d263d;
  --slate: #17334d;
  --blue: #2677ff;
  --blue-2: #54a3ff;
  --teal: #18c7b0;
  --amber: #f0a23a;
  --shadow: 0 24px 70px rgba(11, 30, 49, 0.13);
  font-family: "Inter", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f8fc;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6f9fd 0%, #eef4fb 38%, #ffffff 100%);
}

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

button,
a,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  overflow-wrap: normal;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1200px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(7, 24, 39, 0.82);
  box-shadow: 0 16px 50px rgba(7, 24, 39, 0.24);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img,
.footer-brand img {
  width: 2.25rem;
  height: 2.25rem;
}

.brand strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  margin-top: 0.15rem;
  color: #9fb3c8;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  color: #c7d6e6;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.82rem 1.05rem;
  border: 0;
  border-radius: 14px;
  font-weight: 820;
  white-space: nowrap;
  cursor: pointer;
}

.nav-cta,
.button.primary,
.contact-form button {
  color: white;
  background: linear-gradient(135deg, var(--blue), #1556d8);
  box-shadow: 0 16px 34px rgba(38, 119, 255, 0.28);
}

.button.secondary {
  color: #e8f3ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 5rem);
  margin-top: -4.2rem;
  padding-top: 5.8rem;
  background: var(--navy);
}

.hero-product-preview {
  background:
    linear-gradient(135deg, #071827 0%, #0d263d 52%, #102f46 100%);
}

.hero-product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 119, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.hero-network-canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
  z-index: 1;
  width: 62%;
  height: 100%;
  opacity: 0.78;
  pointer-events: none;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
}

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

.hero-product-preview h1 {
  max-width: 12.8ch;
  text-wrap: balance;
}

.hero-product-shot {
  align-self: center;
  position: relative;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.hero-product-shot img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero .hero-product-shot figcaption {
  margin-top: 0.75rem;
  color: #d6e8f2;
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-product-panel {
  align-self: center;
  width: 100%;
  max-width: 31rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(9, 28, 45, 0.86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.product-window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #d7e8fa;
  font-size: 0.82rem;
}

.product-window-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #335977;
}

.product-window-bar span:nth-child(1) {
  background: #2677ff;
}

.product-window-bar span:nth-child(2) {
  background: #18c7b0;
}

.product-window-bar span:nth-child(3) {
  background: #f0a23a;
}

.product-window-bar strong {
  margin-left: 0.55rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 7.7rem 1fr;
  min-height: 22.8rem;
}

.product-layout aside {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 18, 31, 0.72);
  color: #9fb7ce;
}

.product-layout aside b {
  margin-bottom: 0.45rem;
  color: #ffffff;
}

.product-layout aside span {
  padding: 0.56rem 0.62rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 720;
}

.product-layout aside .active {
  color: #ffffff;
  background: rgba(38, 119, 255, 0.22);
}

.product-layout main {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  padding: 0.86rem;
}

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

.metric-row article,
.work-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.metric-row article {
  padding: 0.66rem;
}

.metric-row small,
.work-card span {
  color: #a9bdd0;
}

.metric-row strong {
  display: block;
  margin-top: 0.35rem;
  color: #ffffff;
  font-size: 1.38rem;
}

.work-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem;
}

.work-card strong {
  display: block;
  color: #ffffff;
}

.work-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.work-card em {
  align-self: start;
  padding: 0.34rem 0.5rem;
  border-radius: 999px;
  color: #b8fff3;
  background: rgba(24, 199, 176, 0.14);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.work-card.critical em {
  color: #ffd99f;
  background: rgba(240, 162, 58, 0.15);
}

.chart-strip {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  min-height: 4.8rem;
  margin-top: 0.25rem;
  padding: 0.82rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.chart-strip span {
  flex: 1;
  min-height: 2.2rem;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #54a3ff, #2677ff);
}

.chart-strip span:nth-child(2) {
  min-height: 4.8rem;
}

.chart-strip span:nth-child(3) {
  min-height: 3.4rem;
  background: linear-gradient(180deg, #18c7b0, #0f8f82);
}

.chart-strip span:nth-child(4) {
  min-height: 5.6rem;
}

.chart-strip span:nth-child(5) {
  min-height: 2.9rem;
  background: linear-gradient(180deg, #f0a23a, #bb741e);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0) 0%, rgba(7, 24, 39, 0.92) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(1200px, calc(100% - 2rem));
  min-height: calc(100vh - 10rem);
  margin: 0 auto;
  padding: 2.25rem 0 4rem;
}

.hero-inner.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin-bottom: 0.95rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 5.4vw, 5.65rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 43rem;
  margin-top: 1.3rem;
  color: rgba(232, 243, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  min-height: 5.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f7ff;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.hero-proof svg {
  width: 1.15rem;
  color: var(--blue-2);
}

.section {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-band {
  width: 100%;
  margin: 0;
  padding-inline: 0;
}

.section-band > * {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.pain-band,
.feature-band {
  background: linear-gradient(180deg, rgba(232, 241, 250, 0.95), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(15, 28, 46, 0.06);
  border-bottom: 1px solid rgba(15, 28, 46, 0.06);
}

.reporting-band {
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.98), rgba(13, 38, 61, 0.96));
  color: white;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.section-intro.wide {
  max-width: 900px;
}

.section-intro h2,
.split-copy h2,
.contact-copy h2,
.cta-strip h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.section-intro p:not(.eyebrow),
.split-copy p,
.cta-strip p,
.contact-copy p {
  max-width: 48rem;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.72;
}

.reporting-band .section-intro p:not(.eyebrow) {
  color: rgba(232, 243, 255, 0.76);
}

.pain-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pain-grid article,
.feature-grid article,
.differentiator-list article,
.reporting-panel,
.cta-strip,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.pain-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  min-height: 8.2rem;
  padding: 1.25rem;
}

.pain-grid article:nth-child(5) {
  grid-column: span 2;
}

.pain-grid svg,
.feature-grid article > span,
.differentiator-list svg {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  padding: 0.65rem;
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(38, 119, 255, 0.12), rgba(24, 199, 176, 0.16));
}

.pain-grid p,
.feature-grid p,
.differentiator-list article,
.reporting-panel span,
.form-note {
  color: var(--muted);
  line-height: 1.68;
}

.pain-grid p {
  font-weight: 720;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(15, 28, 46, 0.08);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.workflow-strip span {
  position: relative;
  display: grid;
  min-height: 4.8rem;
  place-items: center;
  padding: 0.8rem;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-2), var(--slate));
  font-size: 0.93rem;
  font-weight: 820;
  text-align: center;
}

.workflow-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.55rem;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
  background: white;
}

.feature-grid article {
  min-height: 17.5rem;
  padding: 1.35rem;
}

.product-story-section {
  margin-top: -2.2rem;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.product-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-story-grid article {
  min-height: 15rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-story-grid svg {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.65rem;
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(38, 119, 255, 0.12), rgba(24, 199, 176, 0.16));
}

.product-story-grid h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.product-story-grid p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.68;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-showcase figure {
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-showcase img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(11, 30, 49, 0.14);
}

.product-showcase figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-grid h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.feature-grid p {
  margin-top: 0.65rem;
}

.differentiator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.differentiator-list {
  display: grid;
  gap: 0.95rem;
}

.differentiator-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  color: #203247;
  font-weight: 760;
}

.reporting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.reporting-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.reporting-panel div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.reporting-panel strong {
  color: #ffffff;
  font-size: 1rem;
}

.reporting-panel span {
  color: rgba(232, 243, 255, 0.72);
  font-size: 0.93rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.65rem;
}

.cta-strip .eyebrow {
  margin-bottom: 0.6rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.3rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #31485d;
  font-size: 0.9rem;
  font-weight: 680;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 8.25rem;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(38, 119, 255, 0.2);
  border-color: #7aa6ff;
}

.contact-form .full-span,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.82rem;
}


.answer-grid,
.comparison-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.faq-band {
  background: linear-gradient(180deg, rgba(232, 241, 250, 0.95), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(15, 28, 46, 0.06);
  border-bottom: 1px solid rgba(15, 28, 46, 0.06);
}

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

.answer-grid article,
.comparison-grid article,
.faq-grid article {
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.answer-grid h3,
.comparison-grid h3,
.faq-grid h3 {
  font-size: 1.14rem;
}

.answer-grid p,
.comparison-grid p,
.faq-grid p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  color: #5f7386;
  font-size: 0.92rem;
}

.footer-brand {
  color: var(--ink);
  font-weight: 800;
}

.footer-social {
  color: var(--blue);
  font-weight: 800;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--teal);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    align-items: center;
    padding: 3.25rem 0 3rem;
  }

  .hero-network-canvas {
    inset: 0;
    width: 100%;
    opacity: 0.5;
  }

  .pain-grid,
  .feature-grid,
  .answer-grid,
  .comparison-grid,
  .faq-grid,
  .differentiator-section,
  .reporting-layout,
  .contact-section,
  .product-story-grid,
  .product-showcase,
  .product-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner.product-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-product-panel {
    width: min(100%, 46rem);
  }

  .hero-product-shot {
    width: min(100%, 50rem);
    justify-self: center;
  }

  .pain-grid article:nth-child(5) {
    grid-column: auto;
  }

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

  .workflow-strip span:not(:last-child)::after {
    display: none;
  }

  .cta-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-proof {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100%, calc(100% - 1rem));
    margin-top: 0.5rem;
    padding: 0.7rem;
    border-radius: 16px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 2.7rem;
    padding: 0.72rem 0.85rem;
  }

  .hero {
    margin-top: 0;
    padding-top: 1rem;
  }

  .hero-network-canvas {
    opacity: 0.38;
  }

  .hero-inner {
    min-height: auto;
    padding: 2.35rem 0 3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.4vw, 3.1rem);
    line-height: 1.03;
  }

  .workflow-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    padding-right: 0.75rem;
  }

  .hero-actions .button {
    width: min(100%, 21rem);
  }

  .section,
  .section-band > * {
    width: min(100%, calc(100% - 1rem));
  }

  .pain-grid article,
  .differentiator-list article {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form button,
  .form-note {
    grid-column: 1;
  }

  .hero-product-panel {
    max-width: 100%;
    border-radius: 18px;
  }

  .hero-product-shot {
    width: calc(100% - 0.75rem);
    padding: 0.45rem;
    border-radius: 16px;
  }

  .hero-product-shot img {
    border-radius: 10px;
  }

  .hero-product-shot figcaption {
    font-size: 0.78rem;
  }

  .product-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-layout aside {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .work-card {
    display: grid;
  }

  .work-card em {
    justify-self: start;
  }

  .chart-strip {
    min-height: 4.5rem;
  }
}

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

  .brand small {
    display: none;
  }

  .nav-cta {
    width: 2.9rem;
    min-width: 2.9rem;
    padding: 0.72rem;
    overflow: hidden;
    font-size: 0;
    gap: 0;
  }

  .nav-cta svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}
