/* Dupont HR marketing — product shots & navy brand (Fire Report active colour) */

.brand {
  gap: 0.75rem;
}

.brand-mark--hr {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 100%);
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.4), 0 8px 24px rgba(30, 58, 95, 0.35);
  flex-shrink: 0;
}

.brand-mark--hr .brand-mark__glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.brand-text strong {
  letter-spacing: 0.04em;
}

.gradient-text,
.hero h1 .gradient-text {
  background: linear-gradient(105deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-solid,
.cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.35), 0 10px 30px rgba(30, 58, 95, 0.35);
}

.btn-solid:hover,
.cta:hover {
  filter: brightness(1.08);
}

.pill-dot {
  background: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.85);
}

.kicker {
  color: #93c5fd;
}

.loader-spinner {
  background: conic-gradient(
    from 0deg,
    transparent 0deg 60deg,
    #3b82f6 60deg 140deg,
    #1e3a5f 140deg 220deg,
    #6366f1 220deg 300deg,
    transparent 300deg 360deg
  );
}

/* Capability strip under hero */
.hr-panel {
  margin-top: 1.5rem;
}

.hr-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .hr-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hr-panel-grid {
    grid-template-columns: 1fr;
  }
}

.hr-stat {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(30, 58, 95, 0.55), rgba(11, 18, 32, 0.9));
}

.hr-stat h3 {
  margin: 0.55rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hr-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hr-stat-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 58, 95, 0.45);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.hr-stat-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.hr-stat--blue .hr-stat-icon {
  background: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.4);
}

/* Screenshot gallery — centered drag carousel */
.shot-grid {
  display: none;
}

.shot-showcase {
  margin-top: 0.35rem;
}

.shot-showcase__viewport {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.shot-showcase__viewport:active,
.shot-showcase__track.is-dragging {
  cursor: grabbing;
}

.shot-showcase__track {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.15rem;
  width: max-content;
  padding: 1rem 0 1.25rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.shot-showcase__track.is-instant,
.phone-showcase__track.is-instant {
  transition: none;
}

.shot-slide {
  flex: 0 0 auto;
  width: min(520px, 78vw);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
  opacity: 0.35;
  transform: scale(0.86);
  filter: blur(0.6px) brightness(0.72);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.shot-slide.is-adjacent {
  opacity: 0.62;
  transform: scale(0.92);
  filter: blur(0.25px) brightness(0.88);
}

.shot-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45), 0 22px 48px rgba(37, 99, 235, 0.28);
}

.shot-showcase__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.shot-showcase__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.shot-showcase__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.shot-frame {
  background: linear-gradient(180deg, #0f172a, #111827);
  border-bottom: 1px solid var(--line);
  padding: 0;
  height: 240px;
  overflow: hidden;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
  display: block;
  pointer-events: none;
}

.shot-open {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.shot-meta {
  padding: 1rem 1.05rem 1.15rem;
}

.shot-meta h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.shot-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.shot-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
}

@media (min-width: 900px) {
  .shot-slide {
    width: min(640px, 62vw);
  }
  .shot-frame {
    height: 280px;
  }
  .shot-showcase__viewport {
    min-height: 420px;
  }
}

/* Mobile phones row */
.phone-row {
  display: none;
}

.phone-showcase {
  margin-top: 0.5rem;
}

.phone-showcase__viewport {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: block;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.phone-showcase__viewport:active,
.phone-showcase__track.is-dragging {
  cursor: grabbing;
}

.phone-showcase__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  width: max-content;
  padding: 1.25rem 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.phone-bezel img {
  pointer-events: none;
}

.phone-slide {
  flex: 0 0 auto;
  width: min(260px, 70vw);
  opacity: 0.32;
  transform: scale(0.78);
  filter: blur(1px) brightness(0.7);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  text-align: center;
}

.phone-slide.is-adjacent {
  opacity: 0.58;
  transform: scale(0.88);
  filter: blur(0.35px) brightness(0.88);
}

.phone-slide.is-active {
  opacity: 1;
  transform: scale(1.06);
  filter: none;
}

.phone-slide.is-active .phone-bezel {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.55), 0 26px 56px rgba(37, 99, 235, 0.42);
}

.phone-bezel {
  margin: 0 auto;
  width: 100%;
  padding: 10px 10px 18px;
  border-radius: 28px;
  background: linear-gradient(160deg, #1e293b, #0b1220);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.phone-bezel img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  display: block;
}

.phone-bezel::after {
  content: "";
  display: block;
  width: 36%;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #1e3a5f;
}

.phone-showcase__footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.phone-showcase__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.phone-showcase__caption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-showcase__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.phone-nav,
.phone-pause,
.lb__nav,
.lb__close,
.lb__pause {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.9);
  color: var(--ink);
  border-radius: 999px;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.phone-dots {
  display: flex;
  gap: 0.4rem;
}

.phone-dots button {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
}

.phone-dots button.is-active {
  width: 1.35rem;
  background: #3b82f6;
}

/* Lightbox gallery */
.lb[hidden] {
  display: none !important;
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
}

.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(6px);
}

.lb__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.75rem;
}

.lb__stage {
  background: #0b1220;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: auto;
  max-height: calc(100vh - 7rem);
  display: grid;
  place-items: start center;
}

.lb__img {
  width: 100%;
  height: auto;
  display: block;
}

.lb__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
}

.lb__nav--prev { left: -0.25rem; }
.lb__nav--next { right: -0.25rem; }

.lb__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 3;
}

.lb__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  color: var(--ink);
}

.lb__meta p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lb__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .lb__nav--prev { left: 0.35rem; }
  .lb__nav--next { right: 0.35rem; }
  .phone-showcase__viewport { min-height: 380px; }
}

/* Brochure cards */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 700px) {
  .brochure-grid {
    grid-template-columns: 1fr;
  }
}

.brochure-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.45), rgba(11, 18, 32, 0.92));
}

.brochure-card h3 {
  margin: 0;
  font-family: var(--font-display);
}

.brochure-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.split-shots {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .split-shots {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-inner--hr {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-pad-x);
  flex-wrap: wrap;
}

.footer-inner--hr .footer-brand {
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
}

.footer-inner--hr .footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: right;
  flex: 1 1 240px;
  max-width: 36rem;
}

.footer-url {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .footer-inner--hr {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner--hr .footer-copy {
    text-align: left;
    max-width: none;
  }
}
