/* ============================================
   Work Models — Shared Styles
   Used on inspire.html, pick.html, ttipss.html
   ============================================ */

/* Model page hero */
.model-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
}
.model-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.model-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.model-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.model-breadcrumb a { color: var(--accent); }
.model-breadcrumb a:hover { color: var(--accent-hover); }
.model-breadcrumb .sep { opacity: 0.4; }
.model-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.model-hero-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-primary);
}
.model-hero-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.model-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}
.model-hero h1 span {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-hover), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.model-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.model-hero-pillars {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pillar-tag {
  padding: 8px 18px;
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}
.pillar-tag:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Infographic overview */
.infographic-section {
  padding: 80px 0;
  position: relative;
}
.infographic-wheel {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.wheel {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 60px var(--accent-glow);
}
.wheel-center span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--bg-primary);
  letter-spacing: 0.05em;
}
.wheel-node {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: default;
}
.wheel-node:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--accent-glow);
}
.wheel-node .node-letter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}
.wheel-node .node-label {
  font-size: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-align: center;
}

/* Pillar detail cards */
.pillar-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.pillar-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--border);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.pillar-card.alt { border-left: 3px solid var(--accent); }
.pillar-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon .icon-letter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}
.pillar-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 700;
}
.pillar-content .pillar-subtitle {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pillar-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.pillar-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.pillar-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.pillar-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.pillar-key {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-subtle);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

/* Bottom CTA / Other models */
.model-cta-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.model-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.model-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.model-cta-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.model-cta-card .model-letter {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-primary);
}
.model-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.model-cta-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.model-cta-card .explore-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.model-cta-card.current {
  border-color: var(--accent);
  opacity: 0.5;
  pointer-events: none;
}
.model-cta-card.current .explore-link { display: none; }
.model-cta-card.current::after {
  content: 'You are here';
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* Back nav */
.back-nav {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
}
.back-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.back-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.back-nav-top {
  position: fixed;
  top: 80px;
  left: 28px;
  z-index: 900;
}
.back-nav-top a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(15, 18, 32, 0.85);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.back-nav-top a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .model-hero { padding: 100px 0 36px; min-height: auto; }
  .model-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .model-hero p { font-size: 14px; }
  .pillar-card { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .pillar-icon { width: 56px; height: 56px; }
  .pillar-icon .icon-letter { font-size: 22px; }
  .wheel { width: 280px; height: 280px; }
  .wheel-center { width: 72px; height: 72px; }
  .wheel-center span { font-size: 1.1rem; }
  .wheel-node { width: 54px; height: 54px; }
  .wheel-node .node-letter { font-size: 0.95rem; }
  .wheel-node .node-label { font-size: 7px; }
  .back-nav a { padding: 8px 14px; font-size: 12px; }
  .back-nav { bottom: 16px; left: 16px; }
  .back-nav-top { top: 70px; left: 12px; }
  .back-nav-top a { padding: 6px 12px; font-size: 11px; gap: 6px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .footer-content { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .footer-social { justify-content: center; }
}
@media (max-width: 480px) {
  .model-hero { padding: 90px 0 28px; }
  .model-hero h1 { font-size: 1.6rem; }
  .wheel { width: 240px; height: 240px; }
  .wheel-center { width: 64px; height: 64px; }
  .wheel-center span { font-size: 1rem; }
  .wheel-node { width: 48px; height: 48px; }
  .wheel-node .node-letter { font-size: 0.85rem; }
  .section-title { font-size: 1.5rem; }
}
