/* ── Industries pages ─────────────────────────────────────────── */

.page-hero-inner .lead { max-width: 56ch; }

/* section headers (same treatment as home/articles) */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head .eyebrow { margin-bottom: 16px; }
.ind-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
/* hero is dark — make the ghost button readable */
.ind-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.ind-hero .btn-ghost:hover { color: var(--lime); border-color: var(--lime); }

/* shape section — dots assemble into the industry icon here (white area) */
.ind-shape-sec { background: transparent; }
.ind-shape-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 5vw, 72px); }
.shape-visual { position: relative; display: flex; justify-content: center; }
.shape-anchor { width: 360px; height: 360px; max-width: 100%; }
.shape-src { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.shape-body .display { font-size: clamp(34px, 5vw, 60px); line-height: 1.04; }
@media (max-width: 860px) {
  .ind-shape-inner { grid-template-columns: 1fr; text-align: center; }
  .ind-shape-inner .eyebrow { justify-content: center; }
  .ind-shape-inner .ind-hero-cta { justify-content: center; }
  .shape-anchor { width: 260px; height: 260px; }
}

/* big industry watermark icon in the hero — makes each page instantly distinct */
.ind-hero .page-hero-inner { position: relative; }
.ind-hero-mark {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  color: var(--lime); opacity: 0.16; pointer-events: none; z-index: 0;
  animation: markFloat 7s var(--ease) infinite alternate;
}
@keyframes markFloat { from { transform: translateY(-52%); } to { transform: translateY(-46%); } }
@media (max-width: 900px) {
  .ind-hero-mark { opacity: 0.08; right: -40px; }
  .ind-hero-mark svg { width: 200px; height: 200px; }
}

/* Stats band */
.ind-stats-band { background: var(--navy); padding: 34px 0; }
.ind-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ind-stat { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.ind-stat strong { font-family: var(--ff-display, var(--font-orbitron), "Orbitron", sans-serif); font-size: clamp(20px, 2.6vw, 28px); color: var(--lime); letter-spacing: 0.02em; }
.ind-stat span { color: rgba(255, 255, 255, 0.72); font-size: 13.5px; }

/* Offer rows */
.ind-offers { display: flex; flex-direction: column; gap: 64px; margin-top: 8px; }
.ind-offer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.ind-offer.flip .ind-offer-visual { order: 2; }
.ind-offer.flip .ind-offer-body { order: 1; }

/* app-window mockup — matches the launch.js code window on the homepage */
.ind-offer-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(31, 46, 91, 0.25);
  box-shadow: 0 30px 70px -30px rgba(15, 23, 48, 0.55);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ind-offer:hover .ind-offer-visual { transform: translateY(-6px); box-shadow: 0 42px 90px -34px rgba(15, 23, 48, 0.65); }
.iov-bar {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: #101a38; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.iov-tl { width: 11px; height: 11px; border-radius: 50%; }
.iov-tl.r { background: #ff5f57; } .iov-tl.y { background: #febc2e; } .iov-tl.g { background: #28c840; }
.iov-file { margin-left: 10px; color: rgba(255, 255, 255, 0.65); font-size: 12px; letter-spacing: 0.03em; }
.iov-live { margin-left: auto; color: var(--lime); font-size: 10.5px; letter-spacing: 0.12em; }
.iov-stage {
  position: relative; min-height: 270px; flex: 1;
  display: grid; place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(150deg, var(--navy), #141f44 70%);
  background-size: 40px 40px, 40px 40px, cover;
}
.iov-glow { position: absolute; inset: auto -30% -55% -30%; height: 75%; background: radial-gradient(50% 60% at 50% 100%, rgba(198, 217, 54, 0.28), transparent 75%); pointer-events: none; }
.iov-scene { position: relative; z-index: 2; width: min(92%, 420px); height: auto; transition: transform 0.5s var(--ease); }
.ind-offer:hover .iov-scene { transform: translateY(-5px) scale(1.02); }
.iov-ring { position: absolute; border: 1px solid rgba(198, 217, 54, 0.22); border-radius: 50%; }
.iov-ring.r1 { width: 190px; height: 190px; animation: iovPulse 4.5s var(--ease) infinite; }
.iov-ring.r2 { width: 270px; height: 270px; animation: iovPulse 4.5s var(--ease) infinite 1.1s; }
@keyframes iovPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.07); opacity: 0.3; } }
.iov-tile {
  position: relative; z-index: 2; width: 116px; height: 116px; border-radius: 28px;
  display: grid; place-items: center; color: var(--lime);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(198, 217, 54, 0.45);
  box-shadow: 0 22px 48px -16px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.5s var(--ease);
}
.ind-offer:hover .iov-tile { transform: translateY(-6px) rotate(-2deg) scale(1.04); }
.iov-chip {
  position: absolute; z-index: 3; padding: 7px 13px; border-radius: 100px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  background: rgba(16, 26, 56, 0.85); color: #fff;
  border: 1px solid rgba(198, 217, 54, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.5);
}
.iov-chip.c1 { top: 18%; left: 10%; animation: iovFloat 5s var(--ease) infinite alternate; }
.iov-chip.c2 { top: 30%; right: 9%; animation: iovFloat 6s var(--ease) infinite alternate-reverse; }
.iov-chip.c3 { bottom: 16%; left: 22%; animation: iovFloat 5.5s var(--ease) infinite alternate 0.6s; }
.iov-dot { position: absolute; border-radius: 50%; background: var(--lime); opacity: 0.5; }
.iov-dot.d1 { width: 9px; height: 9px; top: 16%; right: 30%; animation: iovFloat 5s var(--ease) infinite alternate; }
.iov-dot.d2 { width: 6px; height: 6px; bottom: 20%; right: 24%; animation: iovFloat 6s var(--ease) infinite alternate-reverse; }
@keyframes iovFloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }

.ind-offer-body .mono.lime { display: inline-block; margin-bottom: 12px; }
.ind-offer-body h3 { margin-bottom: 12px; color: var(--navy); }
.ind-offer-body p { max-width: 48ch; }
.ind-offer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ind-offer-tags span {
  padding: 7px 13px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 12px; color: var(--fog); transition: all 0.3s var(--ease);
}
.ind-offer:hover .ind-offer-tags span { border-color: rgba(198, 217, 54, 0.55); color: var(--navy); }

/* Other industry chips */
.ind-more-sec { padding-block: 0 56px; }
.ind-more-sec .sec-head { margin-bottom: 28px; }
.ind-articles-sec { padding-top: 0; }
.ind-chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.ind-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px;
  border: 1px solid var(--line); border-radius: 100px; background: var(--panel);
  color: var(--navy); font-weight: 600; font-size: 13.5px; text-decoration: none;
  transition: all 0.3s var(--ease);
}
.ind-chip:hover { border-color: var(--lime); background: rgba(198, 217, 54, 0.12); transform: translateY(-2px); }
.ic-ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--navy); color: var(--lime); flex-shrink: 0; }

/* Related articles */
.ind-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind-post {
  display: flex; flex-direction: column; gap: 14px; padding: 26px;
  border: 1px solid var(--line-soft); border-radius: 18px; background: var(--panel);
  text-decoration: none; transition: all 0.35s var(--ease);
}
.ind-post:hover { border-color: rgba(198, 217, 54, 0.6); transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(31, 46, 91, 0.35); }
.ind-post-top { display: flex; align-items: center; justify-content: space-between; }
.ind-post-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime-ink); }
.ind-post-read { font-size: 12px; color: var(--fog-dim); }
.ind-post h3 { font-size: 18px; line-height: 1.35; color: var(--navy); margin: 0; }
.ind-post-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; font-size: 13px; font-weight: 600; color: var(--lime-ink); }
.ind-post-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.ind-post:hover .ind-post-link svg { transform: translate(2px, -2px); }

/* Industries index grid */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ind-card {
  display: flex; flex-direction: column; gap: 12px; padding: 30px 26px;
  border: 1px solid var(--line-soft); border-radius: 20px; background: var(--panel);
  text-decoration: none; transition: all 0.35s var(--ease); min-height: 250px;
}
.ind-card:hover { border-color: rgba(198, 217, 54, 0.6); transform: translateY(-5px); box-shadow: 0 22px 48px -24px rgba(31, 46, 91, 0.4); }
.ind-card-ic {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: var(--navy); color: var(--lime); flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.ind-card:hover .ind-card-ic { transform: scale(1.07); }
.ind-card h3 { color: var(--navy); margin: 0; }
.ind-card p { font-size: 13.5px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ind-card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; font-size: 13px; font-weight: 600; color: var(--lime-ink); }
.ind-card-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.ind-card:hover .ind-card-link svg { transform: translate(2px, -2px); }

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-posts { grid-template-columns: 1fr; }
  .ind-offer { grid-template-columns: 1fr; gap: 22px; }
  .ind-offer.flip .ind-offer-visual { order: 0; }
  .ind-offer.flip .ind-offer-body { order: 1; }
  .iov-stage { min-height: 210px; }
  .iov-tile { width: 90px; height: 90px; border-radius: 22px; }
  .iov-tile svg { width: 46px; height: 46px; }
  .iov-ring.r1 { width: 145px; height: 145px; }
  .iov-ring.r2 { width: 200px; height: 200px; }
  .ind-offers { gap: 48px; }
}

@media (max-width: 560px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { min-height: 0; }
  .ind-stats { grid-template-columns: 1fr; gap: 18px; }
  .ind-stat { flex-direction: row; align-items: baseline; justify-content: center; gap: 10px; }
}

/* compact industry hero — roughly home-banner height or less */
.ind-hero .page-hero-inner,
.page-hero-inner { padding-block: clamp(30px, 4vw, 52px); }
.page-hero-inner h1.display { font-size: clamp(28px, 4vw, 50px); }
.ind-hero-cta { margin-top: 22px; }

/* industries: article-style gradient banner + transparent header */
.page-hero {
  background: linear-gradient(125deg, #234a76 0%, #35618d 48%, #7cc3cc 100%) !important;
  margin-top: -78px; padding-top: 78px;
}
.page-hero .aurora, .page-hero .ph-grid { display: none; }

/* stats sit inside the banner itself */
.ind-hero .ind-stats { position: relative; z-index: 1; padding-bottom: clamp(26px, 3.5vw, 40px); border-top: 1px solid rgba(255,255,255,0.14); padding-top: clamp(22px, 3vw, 32px); }

/* one-line title, tighter hero on all industry pages */
.ind-hero .page-hero-inner { padding-block: clamp(22px, 3vw, 38px) clamp(20px, 2.6vw, 34px); }
.ind-hero .page-hero-inner h1.display { font-size: clamp(26px, 3.6vw, 46px); line-height: 1.12; margin-bottom: 14px; }
.ind-hero .page-hero-inner .lead { font-size: clamp(14.5px, 1.7vw, 18px); }
.ind-hero .ind-hero-cta { margin-top: 18px; }
