/* ============================================================
   Firefighting Robots Microsite — site styles
   Built on the Hancom Lifecare Design System
   ============================================================ */

@import url("./hlc/colors_and_type.css");

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hlc-white);
  border-bottom: 1px solid var(--border-default);
  height: 72px;
  display: flex;
  align-items: center;
}
.site-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__logo {
  height: 26px;
  width: auto;
}
.site-header__divider {
  width: 1px;
  height: 24px;
  background: var(--border-default);
}
.site-header__product-line {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-secondary);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-header__nav a {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--fg-primary);
  transition: color var(--dur-base) var(--ease-standard);
}
.site-header__nav a:hover { color: var(--hlc-orange); }
.site-header__nav a.is-active { color: var(--hlc-orange); }
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--hlc-black);
  background: var(--hlc-black);
  color: var(--hlc-white);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background var(--dur-base) var(--ease-standard);
}
.site-header__cta:hover { background: var(--hlc-grey-700); border-color: var(--hlc-grey-700); }

/* ---------- Section primitives ---------- */
section { position: relative; }
.section {
  padding: 120px 0;
}
.section--tight { padding: 80px 0; }
.section--dark {
  background: var(--hlc-grey-900);
  color: var(--hlc-white);
}
.section--grey {
  background: var(--bg-secondary);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-secondary);
}
.section--dark .eyebrow { color: var(--hlc-grey-400); }
.eyebrow--accent { color: var(--hlc-orange); }

.rule-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--hlc-orange);
  margin: 0 0 24px;
}
.rule-thin {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-default);
  margin: 0;
  border: 0;
}
.section--dark .rule-thin { background: rgba(255,255,255,0.12); }

.section-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.section-title--md {
  font-size: 44px;
  line-height: 1.1;
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
}
.section-lede {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-secondary);
}
.section--dark .section-lede { color: var(--hlc-grey-300); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-title { font-size: 40px; }
}

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  background: var(--hlc-grey-900);
  color: var(--hlc-white);
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.95);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 45%, rgba(10,10,11,0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 32px 96px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hlc-white);
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--hlc-orange);
}
.hero__title {
  margin: 28px 0 0;
  font-size: 84px;
  line-height: 1.0;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.025em;
  max-width: 1100px;
}
.hero__title em {
  font-style: normal;
  color: var(--hlc-orange);
}
.hero__lede {
  margin: 32px 0 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--hlc-grey-200);
  font-weight: var(--fw-regular);
}
.hero__meta {
  margin-top: 48px;
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-key {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hlc-grey-400);
  font-weight: var(--fw-semibold);
}
.hero__meta-val {
  font-size: 16px;
  font-weight: var(--fw-semibold);
}
@media (max-width: 900px) {
  .hero__title { font-size: 52px; }
  .hero__meta { flex-wrap: wrap; gap: 24px; }
}

/* ---------- Product cards (overview comparison) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--hlc-white);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
  position: relative;
}
.product-card:hover {
  border-color: var(--hlc-grey-400);
  box-shadow: var(--shadow-md);
}
.product-card__media {
  background: var(--hlc-grey-900);
  height: 360px;
  position: relative;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-standard);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--hlc-orange);
  color: var(--hlc-white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.product-card__class {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--hlc-white);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.5);
}
.product-card__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.product-card__title {
  font-size: 36px;
  line-height: 1.05;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.015em;
  margin: 0;
}
.product-card__sub {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hlc-orange);
  font-weight: var(--fw-bold);
  margin: -12px 0 0;
}
.product-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-secondary);
  margin: 0;
}
.product-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-default);
  margin-top: auto;
}
.product-card__specs > div {
  padding: 20px 0;
  border-right: 1px solid var(--border-default);
  padding-right: 16px;
}
.product-card__specs > div:last-child { border-right: 0; padding-right: 0; }
.product-card__specs > div:not(:first-child) { padding-left: 16px; }
.product-card__spec-key {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
  font-weight: var(--fw-semibold);
}
.product-card__spec-val {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.product-card__spec-val small {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--fg-secondary);
  margin-left: 2px;
  letter-spacing: 0;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-primary);
  padding: 14px 0 0;
  align-self: flex-start;
  border-bottom: 0;
  position: relative;
}
.product-card__cta::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-standard);
}
.product-card:hover .product-card__cta::after { transform: translateX(6px); }
.product-card__cta:hover { color: var(--hlc-orange); }

/* ---------- Capability bar (numbers grid) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cap-grid > div {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cap-grid > div:last-child { border-right: 0; }
.cap-grid__num {
  font-size: 56px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cap-grid__num small {
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--hlc-grey-400);
  margin-left: 4px;
  letter-spacing: 0;
}
.cap-grid__num em {
  font-style: normal;
  color: var(--hlc-orange);
}
.cap-grid__label {
  margin-top: 16px;
  font-size: 14px;
  color: var(--hlc-grey-300);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid > div:nth-child(2) { border-right: 0; }
  .cap-grid__num { font-size: 40px; }
}

/* ---------- Use case strip ---------- */
.use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
}
.use-case {
  background: var(--hlc-white);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.use-case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hlc-grey-100);
  border-bottom: 1px solid var(--border-default);
}
.use-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.use-case__body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.use-case__num {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  color: var(--hlc-orange);
}
.use-case__title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin: 0;
  letter-spacing: -0.005em;
}
.use-case__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-secondary);
  margin: 0;
}
@media (max-width: 900px) { .use-cases { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Product detail hero ---------- */
.p-hero {
  position: relative;
  background: var(--hlc-grey-900);
  color: var(--hlc-white);
  padding: 0;
  overflow: hidden;
}
.p-hero__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
  min-height: 640px;
}
@media (max-width: 1100px) { .p-hero__grid { grid-template-columns: 1fr; } }
.p-hero__copy {
  padding: 96px 64px 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hlc-grey-400);
  margin-bottom: 36px;
}
.p-hero__crumbs a { color: var(--hlc-grey-300); }
.p-hero__crumbs a:hover { color: var(--hlc-orange); }
.p-hero__class {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hlc-white);
  margin-bottom: 24px;
}
.p-hero__class::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--hlc-orange);
}
.p-hero__name {
  font-size: 88px;
  line-height: 0.95;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  margin: 0;
}
.p-hero__name small {
  display: block;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--hlc-grey-400);
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.p-hero__lede {
  margin: 36px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--hlc-grey-200);
  max-width: 480px;
}
.p-hero__media {
  position: relative;
  background: linear-gradient(135deg, #181818 0%, #0a0a0b 100%);
  overflow: hidden;
}
.p-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__media--contain img { object-fit: contain; padding: 48px; }
@media (max-width: 1100px) {
  .p-hero__copy { padding: 64px 32px; }
  .p-hero__name { font-size: 64px; }
  .p-hero__media { min-height: 400px; }
}

/* ---------- Spec band: 4 big numbers under hero ---------- */
.spec-band {
  background: var(--hlc-black);
  color: var(--hlc-white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.spec-band > div {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.spec-band > div:last-child { border-right: 0; }
.spec-band__key {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hlc-grey-400);
}
.spec-band__val {
  margin-top: 10px;
  font-size: 32px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.spec-band__val small {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--hlc-grey-300);
  margin-left: 4px;
  letter-spacing: 0;
}
@media (max-width: 900px) { .spec-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Two col content layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Module gallery (configurations) ---------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
}
.module {
  background: var(--hlc-white);
  display: flex;
  flex-direction: column;
}
.module__media {
  background: var(--hlc-grey-50);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.module__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.module__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.module__num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: var(--fw-bold);
  color: var(--hlc-grey-500);
  font-variant-numeric: tabular-nums;
}
.module__body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-default);
}
.module__title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 0;
  letter-spacing: -0.005em;
}
.module__title small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hlc-orange);
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
}
.module__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0;
}
@media (max-width: 900px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Spec table (detailed) ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-default);
  font-size: 15px;
  vertical-align: top;
}
.spec-table th {
  width: 240px;
  font-weight: var(--fw-semibold);
  color: var(--fg-primary);
  background: var(--hlc-grey-50);
  letter-spacing: -0.005em;
}
.spec-table td {
  color: var(--fg-secondary);
}
.spec-table tr.spec-table__group th {
  background: var(--hlc-black);
  color: var(--hlc-white);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.spec-table tr.spec-table__group td {
  background: var(--hlc-black);
  color: var(--hlc-grey-400);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ---------- Gallery strip ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--hlc-grey-100);
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-standard);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--lg { grid-column: span 8; aspect-ratio: 16/9; }
.gallery__item--sm { grid-column: span 4; }
.gallery__item--md { grid-column: span 6; }
@media (max-width: 900px) {
  .gallery__item--lg, .gallery__item--sm, .gallery__item--md { grid-column: span 12; }
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--hlc-orange);
  color: var(--hlc-white);
  padding: 80px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 900px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
.cta-band__title {
  font-size: 44px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  max-width: 720px;
}
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hlc-black);
  color: var(--hlc-white);
  padding: 20px 32px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-standard);
}
.cta-band__btn:hover { background: var(--hlc-grey-800); }

/* ---------- Footer ---------- */
.footer {
  background: var(--hlc-black);
  color: var(--hlc-grey-300);
  padding: 80px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}
.footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hlc-grey-400);
  max-width: 360px;
}
.footer__col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hlc-grey-400);
  margin: 0 0 16px;
  font-weight: var(--fw-bold);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col a:hover { color: var(--hlc-orange); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--hlc-grey-500);
}

/* ---------- Misc helpers ---------- */
.flex-row { display: flex; gap: 16px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.btn--primary { background: var(--hlc-orange); color: var(--hlc-white); border-color: var(--hlc-orange); }
.btn--primary:hover { background: var(--hlc-orange-hover); border-color: var(--hlc-orange-hover); }
.btn--dark { background: var(--hlc-black); color: var(--hlc-white); border-color: var(--hlc-black); }
.btn--dark:hover { background: var(--hlc-grey-700); border-color: var(--hlc-grey-700); }
.btn--ghost { background: transparent; color: var(--hlc-white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: var(--hlc-white); }

.kicker-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-secondary);
}
.kicker-row__bar {
  width: 32px;
  height: 2px;
  background: var(--hlc-orange);
}

.callout {
  border-left: 3px solid var(--hlc-orange);
  padding: 4px 0 4px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-secondary);
}
.section--dark .callout { color: var(--hlc-grey-300); }

.diag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diag-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-default);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.section--dark .diag-list li { border-bottom-color: rgba(255,255,255,0.12); }
.diag-list__idx {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  color: var(--hlc-orange);
  font-variant-numeric: tabular-nums;
  width: 32px;
}
.diag-list__title {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.005em;
}
.diag-list__val {
  font-size: 14px;
  color: var(--fg-secondary);
  font-variant-numeric: tabular-nums;
}
.section--dark .diag-list__val { color: var(--hlc-grey-300); }

/* ---------- Compare hero strip + table (landing) ---------- */
.compare-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-default);
  border-bottom: none;
  margin-top: 56px;
}
.compare-hero__cell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--hlc-black);
}
.compare-hero__cell + .compare-hero__cell {
  border-left: 1px solid var(--border-default);
}
.compare-hero__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare-hero__label {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
  color: var(--hlc-white);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.compare-hero__name {
  font-size: 24px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}
.compare-hero__class {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: var(--fw-semibold);
  color: var(--hlc-orange);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .compare-hero { grid-template-columns: 1fr; }
  .compare-hero__cell + .compare-hero__cell { border-left: none; border-top: 1px solid var(--border-default); }
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.compare th, .compare td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
  font-size: 15px;
  vertical-align: middle;
}
.compare thead th {
  background: var(--hlc-black);
  color: var(--hlc-white);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  border-bottom: 0;
  padding: 28px 24px;
}
.compare thead th:first-child {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hlc-grey-400);
  font-weight: var(--fw-semibold);
}
.compare tbody th {
  font-weight: var(--fw-semibold);
  width: 28%;
  color: var(--fg-primary);
  background: var(--hlc-grey-50);
  font-size: 14px;
  letter-spacing: 0;
}
.compare tbody td {
  font-size: 16px;
  color: var(--fg-primary);
  font-weight: var(--fw-medium);
}
.compare tbody td strong {
  display: inline-block;
  font-size: 22px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}
.compare tbody td small {
  color: var(--fg-secondary);
  font-weight: var(--fw-regular);
  font-size: 14px;
  margin-left: 4px;
}
.compare__highlight { color: var(--hlc-orange) !important; }

/* ---------- Video band (full-bleed) ---------- */
.video-band {
  position: relative;
  width: 100%;
  background: var(--hlc-black);
  overflow: hidden;
}
.video-band__media {
  position: relative;
  aspect-ratio: 21 / 9;
  width: 100%;
  overflow: hidden;
}
.video-band__media video,
.video-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.video-band__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 720px;
  color: var(--hlc-white);
}
.video-band__eyebrow {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  color: var(--hlc-orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.video-band__title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.video-band__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--hlc-grey-200);
  margin: 0;
  max-width: 520px;
}
.video-band__chip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: var(--fw-semibold);
  color: var(--hlc-white);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .video-band__copy { padding: 0 24px; }
  .video-band__title { font-size: 28px; }
}

/* ---------- Lightbox ---------- */
.is-zoomable { cursor: zoom-in; }
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 9, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}
.lb-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 0s linear 0s;
}
.lb-figure {
  position: relative;
  margin: 0;
  max-width: 96vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: zoom-out;
}
.lb-img {
  max-width: 96vw;
  max-height: 84vh;
  object-fit: contain;
  display: block;
  background: #111;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-cap {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--hlc-grey-300);
  text-align: center;
  max-width: 720px;
  line-height: 1.5;
}
.lb-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.4);
  color: var(--hlc-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover {
  background: var(--hlc-orange);
  border-color: var(--hlc-orange);
}

/* ---------- Sticky in-page nav ---------- */
.subnav {
  background: var(--hlc-white);
  border-bottom: 1px solid var(--border-default);
  position: sticky;
  top: 72px;
  z-index: 40;
}
.subnav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 32px;
}
.subnav__title {
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.subnav__title small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hlc-orange);
  font-weight: var(--fw-bold);
  margin-right: 12px;
}
.subnav__links {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.subnav__links a {
  color: var(--fg-secondary);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  transition: color var(--dur-base) var(--ease-standard);
}
.subnav__links a:hover { color: var(--hlc-orange); }
@media (max-width: 800px) { .subnav__links { display: none; } }
