/* ============================================================
   79 RATIO — COMPONENTS
   components.css — Nav, buttons, cards, forms, footer, carousel
   ============================================================ */

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(0, 0, 0, 0.96);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link--active {
  color: var(--gold);
}

/* Client login button in nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: var(--space-8) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
}

.nav__drawer.open {
  display: flex;
}

.nav__drawer-link {
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--duration) var(--ease);
}

.nav__drawer-link:hover {
  color: var(--gold);
}

.nav__drawer-cta {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: var(--text-base);
  text-align: center;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary — gold fill */
.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Secondary — ghost */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--secondary:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
  background: var(--gold-glow);
}

/* Ghost gold */
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
  padding: var(--space-3) var(--space-6);
}

.btn--ghost:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
}

/* Large */
.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ── CARDS ────────────────────────────────────────────────── */

/* Base card */
.card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

/* Signal card (challenge identification) */
.signal-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.signal-card:hover::before { opacity: 1; }

.signal-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 48px rgba(212, 175, 55, 0.1);
}

.signal-card__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold);
  font-size: var(--text-lg);
}

.signal-card__title {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.signal-card__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.signal-card__link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration) var(--ease);
}

.signal-card:hover .signal-card__link {
  gap: var(--space-3);
}

/* Principle card */
.principle-card {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-8);
  align-items: start;
}

.principle-card:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.principle-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}

.principle-card__content {}

.principle-card__title {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.principle-card__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Article card */
.article-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.article-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--surface-3);
}

.article-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-3);
}

.article-card__title {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: var(--space-3);
}

.article-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-5);
}

.article-card__read {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding-inline: var(--space-6);
}

.hero__label {
  margin-bottom: var(--space-5);
}

.hero__headline {
  margin-bottom: var(--space-6);
}

.hero__sub {
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-inline: auto;
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.hero__scroll-hint span {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-16);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header .label {
  display: block;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
}

/* ── PHASE TIMELINE (First 90 Days) ──────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-phase {
  position: relative;
  z-index: 1;
  padding: var(--space-8) var(--space-6);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration) var(--ease);
}

.timeline-phase:hover {
  border-color: var(--gold-border);
}

.timeline-phase__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--black);
  margin-bottom: var(--space-6);
}

.timeline-phase__weeks {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-3);
}

.timeline-phase__title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.timeline-phase__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.timeline-phase__note {
  font-size: var(--text-xs);
  color: var(--gold-dim);
  font-style: italic;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline::before { display: none; }
}

/* ── VIMEO CAROUSEL ───────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s var(--ease-out);
}

.carousel__slide {
  flex: 0 0 calc(50% - var(--space-3));
  min-width: 0;
}

.video-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.video-card:hover {
  border-color: var(--gold-border);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--surface-3);
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__info {
  padding: var(--space-5) var(--space-6);
}

.video-card__name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-1);
}

.video-card__role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Carousel controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-size: var(--text-lg);
}

.carousel__btn:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}

.carousel__dots {
  display: flex;
  gap: var(--space-2);
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.carousel__dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .carousel__slide {
    flex: 0 0 100%;
  }
}

/* ── CONTACT / INTAKE FORMS ───────────────────────────────── */
.contact-section {
  background: var(--surface-1);
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.intake-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.intake-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.intake-card__title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.intake-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-6);
}

/* Form elements */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select option {
  background: var(--surface-3);
  color: var(--white);
}

/* Form success / error states */
.form-status {
  display: none;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}

.form-status--success {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-soft);
}

.form-status--error {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff8080;
}

@media (max-width: 900px) {
  .intake-grid { grid-template-columns: 1fr; }
}

/* ── WHO WE'RE FOR ────────────────────────────────────────── */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.for-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.for-card--yes {
  background: rgba(212, 175, 55, 0.04);
  border-color: var(--gold-border);
}

.for-card--no {
  background: var(--surface-2);
}

.for-card__heading {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.for-card__heading .check {
  color: var(--gold);
  font-size: var(--text-xl);
}

.for-card__heading .x {
  color: var(--text-muted);
  font-size: var(--text-xl);
}

.for-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.for-list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: var(--space-5);
  position: relative;
}

.for-card--yes .for-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

.for-card--no .for-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .for-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer__main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-8);
}

.footer__brand {}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  max-width: 240px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer__nav-group h4 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-group a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration) var(--ease);
}

.footer__nav-group a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── INLINE QUOTE / PULL QUOTE ────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-8);
  margin-block: var(--space-8);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, var(--text-3xl));
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* ── INDUSTRY PAGE HERO ───────────────────────────────────── */
.industry-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.industry-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.industry-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

.industry-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-inline: var(--space-6);
}

/* ── CHALLENGE HIGHLIGHT STRIP ────────────────────────────── */
.challenge-strip {
  padding-block: var(--space-5);
  border-block: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.challenge-strip::-webkit-scrollbar { display: none; }

.challenge-strip__inner {
  display: flex;
  gap: var(--space-3);
  min-width: max-content;
}

.challenge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}

.challenge-pill:hover {
  background: var(--gold-muted);
  color: var(--gold);
  border-color: var(--gold);
}

/* ── LOADING / SKELETON ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--surface-2) 25%,
    var(--surface-3) 50%,
    var(--surface-2) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── TOAST NOTIFICATION ───────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 200;
  background: var(--surface-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--white);
  max-width: 360px;
  box-shadow: var(--shadow-card);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--success { border-color: rgba(212, 175, 55, 0.5); }
.toast--error   { border-color: rgba(255, 80, 80, 0.4); }
