/* Foursixty industry landing pages (/landing/industries/<slug>/) and hub.
   Shares the public-site tokens: ink #0d1024 (dark surfaces), indigo #6366f1
   (brand primary), pale indigo #eef0fd, tint #f7f8fc, Plus Jakarta Sans.
   The hero's tagged UGC tiles are the one expressive element; every section
   below it is prose-led with hairline structure. */

/* ---------- Rhythm ---------- */

.ind-eyebrow {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--si-primary, #6366f1);
  margin-bottom: .75rem;
}
.ind-eyebrow-light { color: #a5b4fc; }

.ind-section { padding: 4rem 0; }
@media (min-width: 992px) {
  .ind-section { padding: 5.5rem 0; }
}
.ind-section-tint { background: #f7f8fc; }
.ind-section p { max-width: 42rem; }

.ind-list-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--si-gray-700, #565973);
  margin-bottom: .75rem;
}

/* ---------- Hero ---------- */

.ind-hero {
  background-color: #0d1024;
  background-image:
    radial-gradient(ellipse 55% 50% at 12% 10%, rgba(99, 102, 241, .30), transparent 65%),
    radial-gradient(ellipse 45% 45% at 90% 80%, rgba(99, 102, 241, .14), transparent 70%);
  padding: 6.5rem 0 4rem;
}
@media (min-width: 992px) {
  .ind-hero { padding: 8rem 0 6rem; }
}
.ind-crumbs { margin-bottom: 2rem; }
.ind-crumbs .breadcrumb-item,
.ind-crumbs .breadcrumb-item a { color: rgba(255, 255, 255, .55); }
.ind-crumbs .breadcrumb-item a:hover { color: #fff; }
.ind-crumbs .breadcrumb-item.active { color: rgba(255, 255, 255, .85); }
.ind-crumbs .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .35); }

.ind-hero-lede { color: rgba(255, 255, 255, .8); max-width: 34rem; }
.ind-hero-lede p { max-width: none; }
.ind-hero-note { font-size: .8125rem; color: rgba(255, 255, 255, .5); max-width: 30rem; }

/* Tagged tiles: a tall image and two stacked squares, each with a product tag */
.ind-tiles {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: .875rem;
  max-width: 560px;
  margin: 0 auto;
}
.ind-tile {
  position: relative;
  margin: 0;
  border-radius: .875rem;
  background: #151a30;
  box-shadow: 0 24px 56px -20px rgba(0, 0, 0, .6);
}
/* The picture clips to the rounded corners; the tile itself stays visible so a
   product tag can float past the edge the way it does in a live gallery. */
.ind-tile picture {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: .875rem;
  overflow: hidden;
}
/* Doubled class beats the theme's img[width][height]{height:auto} rule */
.ind-tile.ind-tile img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-tile-tall { grid-row: 1 / 3; aspect-ratio: 3 / 5; }
.ind-tile:not(.ind-tile-tall) { aspect-ratio: 1 / 1; }
.ind-tiles-caption {
  grid-column: 1 / -1;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
  margin: .5rem 0 0;
}

.ind-tag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: .4rem;
  transform: translate(-.5rem, -50%);
  pointer-events: none;
}
.ind-tag-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .35);
  flex-shrink: 0;
}
.ind-tag-pill {
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
  color: #0d1024;
  background: #fff;
  padding: .3rem .6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .5);
}
.ind-tag-pill b { font-weight: 700; color: var(--si-primary, #6366f1); margin-left: .25rem; }
/* Tag anchored near a right edge: pill sits to the left of the dot */
.ind-tag-flip {
  flex-direction: row-reverse;
  transform: translate(calc(-100% + .5rem), -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .ind-tag-dot { animation: ind-pulse 2.4s ease-out infinite; }
  @keyframes ind-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }
}
@media (max-width: 575.98px) {
  .ind-tag-pill { font-size: .6875rem; padding: .25rem .5rem; }
  /* Tiles are ~170px wide on phones; the name alone keeps the pill inside */
  .ind-tag-pill b { display: none; }
}

/* ---------- Challenge ledger ---------- */

.ind-ledger { border-top: 1px solid #dfe2ef; }
.ind-ledger-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #dfe2ef;
}
.ind-ledger-row dt { font-weight: 700; color: #0d1024; }
.ind-ledger-row dd { margin: 0; color: var(--si-gray-700, #565973); }
@media (min-width: 768px) {
  .ind-ledger-row { grid-template-columns: 11rem 1fr; }
}

/* ---------- Steps (how it works) ---------- */

.ind-steps { position: relative; }
.ind-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 1.25rem;
  padding-bottom: 2.25rem;
}
.ind-step::before {
  content: "";
  position: absolute;
  left: 1.1875rem;
  top: 2.75rem;
  bottom: .25rem;
  width: 2px;
  background: #e0e3f1;
}
.ind-step-last { padding-bottom: 0; }
.ind-step-last::before { display: none; }
.ind-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--si-primary, #6366f1);
  color: var(--si-primary, #6366f1);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Use cases ---------- */

.ind-usecase {
  border: 1px solid #e6e8f2;
  border-radius: 1rem;
  padding: 1.75rem;
  background: #fff;
}
.ind-icon-chip {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  background: #eef0fd;
  color: var(--si-primary, #6366f1);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ---------- Brands ---------- */

.ind-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dfe2ef;
  border-left: 1px solid #dfe2ef;
}
@media (min-width: 576px) { .ind-brands { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .ind-brands { grid-template-columns: repeat(4, 1fr); } }
.ind-brands li {
  border-right: 1px solid #dfe2ef;
  border-bottom: 1px solid #dfe2ef;
}
.ind-brands a {
  display: block;
  padding: 1.25rem 1.25rem 1.1rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
  background: #fff;
}
.ind-brands a:hover { background: #eef0fd; }
.ind-brand-name {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0d1024;
  letter-spacing: -.01em;
}
.ind-brand-cat {
  display: block;
  font-size: .8125rem;
  color: var(--si-gray-600, #9397ad);
  margin-top: .15rem;
}

.ind-story { border-top: 2px solid #0d1024; padding-top: 1.25rem; }
.ind-story-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: #0d1024;
  font-variant-numeric: tabular-nums;
  margin-bottom: .75rem;
}
.ind-story-copy { font-size: .9375rem; color: var(--si-gray-700, #565973); }
.ind-story-link { font-weight: 600; font-size: .9375rem; }

/* ---------- Examples ---------- */

.ind-examples { position: relative; }
.ind-examples > picture > img {
  display: block;
  width: 100%;
  height: auto;
}
/* ---------- Results (dark band) ---------- */

.ind-dark-band {
  position: relative;
  background-color: #0d1024;
  background-image: radial-gradient(ellipse 50% 60% at 85% 20%, rgba(99, 102, 241, .22), transparent 65%);
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
.ind-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  line-height: 0;
  pointer-events: none;
}
.ind-wave svg { width: 100%; height: 100%; display: block; }
.ind-wave-t { top: -1px; }
.ind-wave-b { bottom: -1px; transform: scale(-1); }
.ind-dark-copy { color: rgba(255, 255, 255, .78); }
.ind-dark-copy a { color: #a5b4fc; }
.ind-dark-copy a:hover { color: #c7d2fe; }

.ind-stat {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 1.25rem;
  height: 100%;
}
.ind-stat-num {
  display: block;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  margin-bottom: .6rem;
}
.ind-stat-what { display: block; color: rgba(255, 255, 255, .8); font-size: .9375rem; max-width: 18rem; }
.ind-stat-brand { display: block; color: rgba(255, 255, 255, .5); font-size: .8125rem; margin-top: .4rem; }
.ind-stat-caption { color: rgba(255, 255, 255, .5); font-size: .8125rem; margin-top: 2rem; max-width: none; }
.ind-stat-caption a { color: #a5b4fc; }

/* ---------- Journey ---------- */

.ind-journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  counter-reset: none;
}
@media (min-width: 768px) { .ind-journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .ind-journey { grid-template-columns: repeat(3, 1fr); } }
.ind-journey-step {
  position: relative;
  padding: 1.25rem 0 0 3.25rem;
  border-top: 1px solid #dfe2ef;
}
.ind-journey-num {
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dfe2ef;
  color: var(--si-primary, #6366f1);
  font-weight: 700;
  font-size: .9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-journey-step p { font-size: .9375rem; color: var(--si-gray-700, #565973); }

/* ---------- Features + integrations ---------- */

.ind-features { display: grid; gap: 0; }
.ind-features li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid #dfe2ef;
}
.ind-features li:last-child { border-bottom: 1px solid #dfe2ef; }
.ind-features .bx {
  font-size: 1.5rem;
  color: var(--si-primary, #6366f1);
  line-height: 1.4;
}
.ind-features h3 a { color: inherit; text-decoration: none; }
.ind-features h3 a:hover { color: var(--si-primary, #6366f1); }
.ind-features p { font-size: .9375rem; color: var(--si-gray-700, #565973); }

.ind-integrations-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--si-gray-700, #565973);
}
.ind-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}
.ind-integrations img { height: 28px; width: auto; opacity: .85; }

/* ---------- Related industries + reading ---------- */

.ind-industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.ind-industry-list a,
.ind-industry-list span {
  display: inline-block;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.3;
}
.ind-industry-list a {
  background: #eef0fd;
  color: #3e429f;
  text-decoration: none;
}
.ind-industry-list a:hover { background: var(--si-primary, #6366f1); color: #fff; }
.ind-industry-list span {
  border: 1px solid #dfe2ef;
  color: var(--si-gray-700, #565973);
  background: #fff;
}
.ind-industry-list-all { margin-bottom: 0; }

.ind-reading-list {
  columns: 1;
  column-gap: 2.5rem;
}
@media (min-width: 768px) { .ind-reading-list { columns: 2; } }
.ind-reading-list li {
  break-inside: avoid;
  padding: .55rem 0;
  border-top: 1px solid #dfe2ef;
  font-size: .9375rem;
}

/* ---------- Final CTA spacing ---------- */

.ind-final { padding-top: 1rem; padding-bottom: 2rem; }

/* ---------- Hub page ---------- */

.ind-hub-hero { padding: 6.5rem 0 3rem; }
@media (min-width: 992px) { .ind-hub-hero { padding: 8rem 0 3.5rem; } }
.ind-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 576px) { .ind-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .ind-hub-grid { grid-template-columns: repeat(3, 1fr); } }
.ind-hub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #dfe2ef;
  border-radius: .75rem;
  background: #fff;
  color: #0d1024;
  font-weight: 600;
  text-decoration: none;
}
a.ind-hub-item:hover { border-color: var(--si-primary, #6366f1); color: var(--si-primary, #6366f1); }
a.ind-hub-item .bx { color: var(--si-primary, #6366f1); font-size: 1.25rem; }
.ind-hub-item-soon { color: var(--si-gray-600, #9397ad); font-weight: 500; background: #f7f8fc; }
.ind-hub-item-soon small { font-size: .75rem; font-weight: 500; }
