/* ===== INFOGRAPHIC EMBEDS — Scoped CSS =====
   All classes prefixed with ig- to avoid conflicts
   Do NOT modify — auto-generated from infographic sources */

.infographic-embed {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background: #0A0A0B;
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .infographic-embed {
    padding: 2rem 1rem;
    border-radius: 12px;
  }
}

/* Scroll reveal for infographic embeds */
.infographic-embed {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

/* Section helpers */
.ig-anxiety-section,
.ig-obituary-section,
.ig-ws-section {
  padding: clamp(4rem,10vw,8rem) 2rem;
}

.ig-section-label,
.ig-section-header {
  margin-bottom: 1.5rem;
}

.ig-callout-block {
  margin: 3rem 0;
}

.ig-callout-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

/* ===== anxiety-map (ig-am-) ===== */
.ig-am-anxiety-map {
    background: #060608;
    color: #f8fafc;
    padding: 6rem 1rem;
    overflow: hidden;
}

.ig-am-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ig-am-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, #fff 30%, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ig-am-header p {
    font-size: 1.1rem;
    color: #71717a;
}

.ig-am-comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ig-am-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    flex: 1;
}

.ig-am-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.ig-am-label-anxiety { color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.4); }
.ig-am-label-relief { color: #00ff9d; border: 1px solid rgba(0, 255, 157, 0.4); }
.ig-am-label-app { color: #007aff; border: 1px solid rgba(0, 122, 255, 0.4); }

.ig-am-viz-box {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.ig-am-svg-floorplan {
    width: 100%;
    height: auto;
    opacity: 0.3;
    stroke: #fff;
    stroke-width: 0.6;
    fill: none;
}

.ig-am-hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
}

.ig-am-anxiety-map .ig-am-hotspot {
    background: radial-gradient(circle, rgba(255, 77, 77, 0.4) 0%, transparent 70%);
    animation: ig-am-pulse-red 2s infinite;
}

.ig-am-bubble {
    position: absolute;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    white-space: nowrap;
    z-index: 10;
}

.ig-am-question-bubble {
    background: #fff;
    color: #000;
    animation: ig-am-float 3s infinite alternate ease-in-out;
}

.ig-am-status-badge {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.3);
    backdrop-filter: blur(5px);
}

.ig-am-divider-arrow {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #007aff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 122, 255, 0.5));
}

.ig-am-iphone-preview {
    width: 180px;
    height: 360px;
    background: #000;
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-radius: 28px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.ig-am-ios-header { margin-bottom: 1.5rem; }
.ig-am-ios-title { font-size: 0.8rem; font-weight: 700; opacity: 0.8; }
.ig-am-ios-banner {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.ig-am-ios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.ig-am-ios-card {
    background: #111;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid #222;
}

.ig-am-ios-card label { display: block; font-size: 0.5rem; color: #71717a; margin-bottom: 2px; }
.ig-am-ios-card value { display: block; font-size: 0.6rem; font-weight: 700; color: #00ff9d; }

.ig-am-footer-cta {
    text-align: center;
    margin-top: 4rem;
}

.ig-am-footer-cta h3 {
    font-size: 1.5rem;
    color: #a1a1aa;
    font-weight: 300;
}

.ig-am-footer-cta strong { color: #fff; font-weight: 700; }

@keyframes ig-am-pulse-red {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes ig-am-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 1000px) {
    .ig-am-comparison-container { flex-direction: column; }
    .ig-am-divider-arrow { transform: rotate(90deg); margin: 1rem 0; }
}



/* ===== cost-of-one-night (ig-con-) ===== */

.ig-con-section {
    background: #050505;
    color: #f8fafc;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.ig-con-glow {
    position: absolute;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ig-con-header {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 2;
    position: relative;
}

.ig-con-header span {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #facc15;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.ig-con-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
}

.ig-con-header p {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ig-con-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ig-con-card-red { border-top: 6px solid #ff3b30; }
.ig-con-card-green { border-top: 6px solid #34c759; }

.ig-con-card-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ig-con-card-red .ig-con-card-label { color: #ff3b30; }
.ig-con-card-green .ig-con-card-label { color: #34c759; }

.ig-con-hero-box {
    background: rgba(0,0,0,0.3);
    width: 100%;
    border-radius: 30px;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-con-hero-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ig-con-card-red .ig-con-hero-num { color: #ff3b30; }
.ig-con-card-green .ig-con-hero-num { color: #34c759; }

.ig-con-hero-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ig-con-item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.ig-con-list-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-con-list-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 0.2rem;
}

.ig-con-list-item p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.2;
}

.ig-con-list-item b {
    font-family: 'Space Mono';
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.ig-con-card-red b { color: #ff3b30; }
.ig-con-card-green b { color: #34c759; }

.ig-con-footer-cta {
    margin-top: 4rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.ig-con-footer-cta h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #888;
}

.ig-con-footer-cta strong { color: #facc15; font-weight: 700; }

@media (max-width: 900px) {
    .ig-con-grid { grid-template-columns: 1fr; }
    .ig-con-item-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .ig-con-item-list { grid-template-columns: 1fr; }
}


/* ===== data-viz-decisions (ig-dvd-) ===== */

.ig-dvd-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ig-dvd-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #666);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ig-dvd-stat-banner {
  font-family: monospace;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #3b82f6;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  display: inline-block;
}

.ig-dvd-viz-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.ig-dvd-central-user {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 50px rgba(0,0,0,1);
  flex-shrink: 0;
}

.ig-dvd-central-user span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 800;
}

.ig-dvd-central-user h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.ig-dvd-cluster-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.ig-dvd-data-point {
  opacity: 0.3;
  animation: ig-dvd-twinkle var(--speed) infinite alternate;
}

@keyframes ig-dvd-twinkle {
  from { opacity: 0.1; }
  to { opacity: 0.6; }
}

.ig-dvd-callout {
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
  border-radius: 12px;
  width: 100%;
  max-width: 260px;
  z-index: 5;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}

.ig-dvd-callout:hover {
  border-color: #3b82f6;
}

.ig-dvd-callout h4 {
  margin: 0 0 0.5rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.ig-dvd-callout p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.ig-dvd-count { color: #3b82f6; font-weight: 700; }

.ig-dvd-c-1 { border-left: 4px solid #10b981; }
.ig-dvd-c-2 { border-left: 4px solid #8b5cf6; }
.ig-dvd-c-3 { border-left: 4px solid #ef4444; }
.ig-dvd-c-4 { border-left: 4px solid #3b82f6; }

.ig-dvd-footer-tagline {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.ig-dvd-footer-tagline h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
}

.ig-dvd-footer-tagline strong { color: #3b82f6; }



/* ===== dumb-building-tax (ig-dbt-) ===== */

.ig-dbt-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ig-dbt-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ig-dbt-header p {
  font-size: 1.1rem;
  color: #888;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.ig-dbt-comparison-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.ig-dbt-receipt {
  background: #f8f9fa;
  color: #111;
  width: 100%;
  max-width: 380px;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  font-family: 'Space Mono', monospace;
  display: flex;
  flex-direction: column;
  transform-origin: top;
}

.ig-dbt-receipt::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: radial-gradient(circle, #f8f9fa 70%, transparent 72%);
  background-size: 20px 20px;
  background-repeat: repeat-x;
}

.ig-dbt-receipt-header {
  text-align: center;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.ig-dbt-receipt-header h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
}

.ig-dbt-receipt-header .ig-dbt-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  display: block;
}

.ig-dbt-meta-info {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.ig-dbt-items { flex-grow: 1; }

.ig-dbt-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #111;
}

.ig-dbt-item .ig-dbt-desc { max-width: 220px; }
.ig-dbt-item .ig-dbt-price { font-weight: 700; }

.ig-dbt-divider {
  border-top: 1px dashed #ccc;
  margin: 1.25rem 0;
}

.ig-dbt-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 0.5rem 0;
}

.ig-dbt-dumb-receipt .ig-dbt-total-line {
  color: #ff3e3e;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.ig-dbt-smart-receipt .ig-dbt-total-line {
  color: #22c55e;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.ig-dbt-savings-badge {
  margin-top: 1.5rem;
  background: #22c55e;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 4px;
  animation: ig-dbt-bounce 2s infinite;
}

@keyframes ig-dbt-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.ig-dbt-footer-tagline {
  margin-top: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ig-dbt-footer-tagline h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #ccc;
}

.ig-dbt-footer-tagline h3 strong {
  color: #fff;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ig-dbt-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  border: 4px solid #ff3e3e;
  color: #ff3e3e;
  padding: 0.75rem 1.5rem;
  font-weight: 900;
  font-size: 2rem;
  opacity: 0.2;
  pointer-events: none;
  text-transform: uppercase;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
}

.ig-dbt-smart-receipt .ig-dbt-stamp {
  border-color: #22c55e;
  color: #22c55e;
}

@media (max-width: 950px) {
  .ig-dbt-comparison-container { flex-direction: column; align-items: center; gap: 2.5rem; }
  .ig-dbt-receipt { max-width: 100%; }
}


/* ===== imessage-infographic (ig-im-) ===== */

.ig-im-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ig-im-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
}

.ig-im-comparison-zip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ig-im-iphone {
    width: clamp(260px, 35vh, 320px);
    height: clamp(520px, 65vh, 620px);
    background: #000;
    border: 8px solid #1c1c1e;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.ig-im-iphone-smartr {
    border-color: #2c2c2e;
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.15), 0 30px 60px rgba(0,0,0,0.6);
}

.ig-im-iphone-notch {
    width: 40%;
    height: 20px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.ig-im-chat-header {
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(20px);
    padding: 25px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 0.5px solid #333;
}

.ig-im-contact-icon {
    width: 32px;
    height: 32px;
    background: #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.ig-im-contact-name { font-weight: 600; font-size: 0.75rem; color: #fff; }

.ig-im-chat-body {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #000;
    overflow: hidden;
}

.ig-im-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.3;
    position: relative;
}

.ig-im-bubble-me {
    align-self: flex-end;
    background: #007aff;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ig-im-bubble-home {
    align-self: flex-start;
    background: #2c2c2e;
    color: #fff;
    border-bottom-left-radius: 4px;
}

.ig-im-status {
    font-size: 0.6rem;
    color: #8e8e93;
    margin-top: 2px;
    text-align: right;
    padding-right: 4px;
}

.ig-im-typing {
    display: flex;
    gap: 3px;
    padding: 8px 12px;
    background: #2c2c2e;
    border-radius: 16px;
    width: fit-content;
}

.ig-im-dot { width: 4px; height: 4px; background: #666; border-radius: 50%; animation: ig-im-blink 1.4s infinite; }
.ig-im-dot:nth-child(2) { animation-delay: 0.2s; }
.ig-im-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ig-im-blink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

.ig-im-iphone-footer {
    background: rgba(28, 28, 30, 0.8);
    padding: 8px 12px 20px;
    border-top: 0.5px solid #333;
}

.ig-im-input-bar {
    background: #000;
    border: 0.5px solid #38383a;
    border-radius: 20px;
    padding: 6px 14px;
    color: #666;
    font-size: 0.75rem;
}

.ig-im-divider {
    color: #27272a;
    font-size: 2rem;
    font-weight: 900;
}

.ig-im-tagline {
    text-align: center;
    margin-top: 3rem;
}

.ig-im-tagline h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    color: #a1a1aa;
}

.ig-im-tagline strong { color: #007aff; font-weight: 700; }

@media (max-width: 900px) {
    .ig-im-comparison-zip { flex-direction: column; gap: 2rem; }
    .ig-im-divider { transform: rotate(90deg); }
}


/* ===== obituary-infographic (ig-obit-) ===== */

.ig-obit-obituary-card {
  background: #f4f1ea;
  width: 100%;
  max-width: 600px;
  padding: 3.5rem 3rem;
  border: 10px solid #000000;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 100px rgba(0,0,0,0.05);
  transform: rotate(0.5deg);
  color: #1a1a1a;
  font-family: 'Libre Baskerville', 'Georgia', serif;
  margin: 0 auto;
}

.ig-obit-obituary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(139, 69, 19, 0.03) 100%);
  pointer-events: none;
}

.ig-obit-header-obit {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 1.5rem;
}

.ig-obit-header-obit h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.8;
  color: #1a1a1a;
}

.ig-obit-subject-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 1rem 0;
  text-transform: uppercase;
  filter: contrast(150%) blur(0.3px);
  color: #1a1a1a;
}

.ig-obit-dates {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  margin-bottom: 1.5rem;
}

.ig-obit-obit-content {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.ig-obit-obit-content p {
  margin-bottom: 1.25rem;
}

.ig-obit-survivors {
  font-weight: 700;
  margin-top: 1.5rem;
}

.ig-obit-quote-block {
  text-align: center;
  font-style: italic;
  margin: 3rem 0 1.5rem;
  font-size: 1.25rem;
  opacity: 0.9;
}

.ig-obit-footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2.5rem;
}

.ig-obit-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 3px 10px;
  filter: contrast(150%) blur(0.3px);
}

@media (max-width: 600px) {
  .ig-obit-obituary-card { padding: 2rem 1.5rem; border-width: 6px; }
  .ig-obit-subject-name { font-size: 1.5rem; }
}


/* ===== performance-review-infographic (ig-pr-) ===== */

.ig-pr-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ig-pr-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ig-pr-appraisal-form {
  width: 100%;
  max-width: 800px;
  background: #fdfdfd;
  color: #1e293b;
  padding: 3rem 2.5rem;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 0 8px rgba(255,255,255,0.05);
  position: relative;
  transform: rotate(-0.5deg);
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
}

.ig-pr-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #000;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.ig-pr-form-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 0;
  color: #1e293b;
}

.ig-pr-form-meta {
  text-align: right;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}

.ig-pr-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ig-pr-info-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.ig-pr-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.ig-pr-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
}

.ig-pr-ratings-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.ig-pr-ratings-table th {
  text-align: left;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #64748b;
  padding: 8px 0;
  border-bottom: 2px solid #000;
}

.ig-pr-ratings-table td {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.ig-pr-category-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
}

.ig-pr-category-comment {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 6px;
  font-style: italic;
}

.ig-pr-score-box {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.ig-pr-number-box {
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
}

.ig-pr-number-box.ig-pr-active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.ig-pr-verdict-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  position: relative;
}

.ig-pr-verdict-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  color: #1e293b;
}

.ig-pr-verdict-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1e293b;
}

.ig-pr-termination-stamp {
  position: absolute;
  bottom: 18px;
  right: 30px;
  border: 5px double #dc2626;
  color: #dc2626;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  transform: rotate(-15deg);
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}

.ig-pr-footer-cta {
  margin-top: 3rem;
  text-align: center;
}

.ig-pr-footer-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: #fff;
}

.ig-pr-footer-cta strong {
  color: #fff;
  background: #dc2626;
  padding: 0 8px;
}

@media (max-width: 800px) {
  .ig-pr-appraisal-form { padding: 1.5rem; transform: none; }
  .ig-pr-info-grid { grid-template-columns: 1fr; }
  .ig-pr-ratings-table td { padding: 1rem 0; }
}




/* ===== screenplay-infographic (ig-sp-) ===== */

.ig-sp-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ig-sp-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #eab308);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.ig-sp-header p {
  font-size: 1.15rem;
  color: #888;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ig-sp-script-container {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
}

.ig-sp-side {
  flex: 1;
  background: #151515;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border-top: 5px solid #333;
  position: relative;
  font-family: 'Courier Prime', 'Courier New', monospace;
  color: #f8fafc;
}

.ig-sp-side-chaos { border-color: #dc2626; }
.ig-sp-side-smart { border-color: #3b82f6; }

.ig-sp-script-header {
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.ig-sp-script-header h2 {
  font-size: 1.3rem;
  margin: 0;
  color: #f8fafc;
}

.ig-sp-script-header .ig-sp-metadata {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.ig-sp-script-header .ig-sp-metadata strong { color: #999; }

.ig-sp-scene-heading {
  font-weight: 700;
  margin: 1.75rem 0 0.875rem;
  color: #f8fafc;
}

.ig-sp-action {
  margin-bottom: 1.25rem;
  color: #ccc;
}

.ig-sp-character {
  width: 60%;
  margin: 1.25rem auto 0;
  text-align: center;
  font-weight: 700;
  color: #f8fafc;
}

.ig-sp-parenthetical {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

.ig-sp-dialogue {
  width: 70%;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #f8fafc;
}

.ig-sp-scene-divider {
  border: 1px dashed #222;
  margin: 2.5rem 0;
}

.ig-sp-tag-icon {
  position: absolute;
  top: -18px;
  right: 18px;
  font-size: 2.2rem;
  opacity: 0.2;
}

.ig-sp-footer-tagline {
  margin-top: 4rem;
  text-align: center;
  max-width: 700px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.ig-sp-footer-tagline h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #f8fafc;
}

.ig-sp-footer-tagline strong { color: #eab308; }

@media (max-width: 1000px) {
  .ig-sp-script-container { flex-direction: column; }
}




/* ===== time-saved-infographic (ig-ts-) ===== */
.ig-ts-section {
    background: #050505;
    color: #f8fafc;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.ig-ts-glow {
    position: absolute;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ig-ts-header {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 2;
    position: relative;
}

.ig-ts-header span {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #f59e0b;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.ig-ts-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
}

.ig-ts-header p {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ig-ts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ig-ts-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ig-ts-card-red { border-top: 6px solid #ff3b30; }
.ig-ts-card-green { border-top: 6px solid #34c759; }

.ig-ts-card-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ig-ts-card-red .ig-ts-card-label { color: #ff3b30; }
.ig-ts-card-green .ig-ts-card-label { color: #34c759; }

.ig-ts-hero-box {
    background: rgba(0,0,0,0.3);
    width: 100%;
    border-radius: 30px;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-ts-hero-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ig-ts-card-red .ig-ts-hero-num { color: #ff3b30; }
.ig-ts-card-green .ig-ts-hero-num { color: #34c759; }

.ig-ts-hero-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ig-ts-item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.ig-ts-list-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-ts-list-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 0.2rem;
}

.ig-ts-list-item p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.2;
}

.ig-ts-list-item b {
    font-family: 'Space Mono';
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.ig-ts-card-red b { color: #ff3b30; }
.ig-ts-card-green b { color: #34c759; }

.ig-ts-footer-cta {
    margin-top: 4rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.ig-ts-footer-cta h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #888;
}

.ig-ts-footer-cta strong { color: #f59e0b; }

@media (max-width: 900px) {
    .ig-ts-grid { grid-template-columns: 1fr; }
    .ig-ts-item-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .ig-ts-item-list { grid-template-columns: 1fr; }
}


/* Toggle widget for SmartR Stack */
.ig-toggle-wrap .ig-toggle-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}



.ig-toggle-btn:hover {
  background: rgba(255,255,255,0.08) !important;
}


/* ===== SmartR Stack (ig-ss-) ===== */
.ig-ss-container {
    perspective: 1200px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ig-ss-layer {
    position: relative;
    width: 80%;
    margin-bottom: -40px;
    transform-style: preserve-3d;
    transform: rotateX(25deg) rotateY(-5deg);
    transition: all 0.5s ease;
    cursor: pointer;
}

.ig-ss-layer:hover {
    transform: rotateX(20deg) rotateY(0deg) translateY(-20px);
    z-index: 100 !important;
}

.ig-ss-slab {
    width: 100%;
    height: 160px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.ig-ss-layer-5 .ig-ss-slab { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05)); border-color: #6366f1; box-shadow: 0 0 40px rgba(99, 102, 241, 0.2); }
.ig-ss-layer-4 .ig-ss-slab { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); border-color: #8b5cf6; }
.ig-ss-layer-3 .ig-ss-slab { background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05)); border-color: #3b82f6; }
.ig-ss-layer-2 .ig-ss-slab { background: linear-gradient(135deg, rgba(71, 85, 105, 0.1), rgba(71, 85, 105, 0.05)); border-color: #475569; }
.ig-ss-layer-1 .ig-ss-slab { background: linear-gradient(135deg, rgba(30, 41, 59, 0.1), rgba(30, 41, 59, 0.05)); border-color: #1e293b; }

.ig-ss-layer-5 { z-index: 5; }
.ig-ss-layer-4 { z-index: 4; }
.ig-ss-layer-3 { z-index: 3; }
.ig-ss-layer-2 { z-index: 2; }
.ig-ss-layer-1 { z-index: 1; }

.ig-ss-layer-num {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.ig-ss-layer-info {
    z-index: 2;
    margin-left: 6rem;
}

.ig-ss-layer-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ig-ss-layer-5 h2 { color: #6366f1; }
.ig-ss-layer-4 h2 { color: #8b5cf6; }
.ig-ss-layer-3 h2 { color: #3b82f6; }
.ig-ss-layer-2 h2 { color: #aaa; }
.ig-ss-layer-1 h2 { color: #888; }

.ig-ss-layer-info p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
    max-width: 500px;
}



@media (max-width: 900px) {
    .ig-ss-layer { width: 95%; transform: none; margin-bottom: 2rem; }
    .ig-ss-slab { height: auto; padding: 2rem; flex-direction: column; text-align: center; }
    .ig-ss-layer-info { margin-left: 0; margin-top: 1rem; }
    .ig-ss-layer-num { display: none; }
    .ig-ss-layer:hover { transform: translateY(-10px); }
}

/* ===== Periodic Table (ig-pt-) ===== */
.ig-pt-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.ig-pt-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ig-pt-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #FAFAF8;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.ig-pt-header h1 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
}

.ig-pt-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    max-width: 45ch;
    margin: 0 auto;
    line-height: 1.6;
}

.ig-pt-footer-tagline {
    margin-top: 6rem;
    padding: 3.5rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ig-pt-footer-tagline p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin: 0 0 2rem 0 !important;
}

.ig-pt-footer-tagline h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.ig-pt-footer-tagline h3 strong {
    background: linear-gradient(to right, var(--color-accent), #00D97E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ig-pt-periodic-table {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.ig-pt-element {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.ig-pt-element:hover {
    transform: scale(1.1);
    z-index: 10;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ig-pt-number {
    position: absolute;
    top: 6px;
    left: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: #666;
}

.ig-pt-weight {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: #444;
}

.ig-pt-symbol {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.ig-pt-name {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    color: #aaa;
    text-align: center;
}

.ig-pt-security { border-color: #ef4444; color: #ef4444; }
.ig-pt-comfort { border-color: #3b82f6; color: #3b82f6; }
.ig-pt-energy { border-color: #10b981; color: #10b981; }
.ig-pt-intelligence { border-color: #8b5cf6; color: #8b5cf6; }
.ig-pt-wellness { border-color: #f59e0b; color: #f59e0b; }
.ig-pt-noble { border-color: #94a3b8; color: #94a3b8; }

.ig-pt-security:hover { background: rgba(239, 68, 68, 0.1); }
.ig-pt-comfort:hover { background: rgba(59, 130, 246, 0.1); }
.ig-pt-energy:hover { background: rgba(16, 185, 129, 0.1); }
.ig-pt-intelligence:hover { background: rgba(139, 92, 246, 0.1); }
.ig-pt-wellness:hover { background: rgba(245, 158, 11, 0.1); }

.ig-pt-legend {
    margin-top: 5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ig-pt-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.ig-pt-legend-box {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.ig-pt-blank { visibility: hidden; }

@media (max-width: 1000px) {
    .ig-pt-periodic-table { grid-template-columns: repeat(6, 1fr); gap: 5px; }
    .ig-pt-element { padding: 4px; }
    .ig-pt-symbol { font-size: 1.2rem; }
}

/* ===== iMessage (ig-im-) ===== */
.ig-im-header { text-align: center; margin-bottom: 3rem; }
.ig-im-header h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4.5vh, 2.5rem); font-weight: 900; margin-bottom: 0.5rem; }
.ig-im-header p { font-size: 1rem; color: #71717a; }

.ig-im-comparison-zip { display: flex; align-items: center; justify-content: center; gap: 3rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.ig-im-iphone { width: 300px; height: 580px; background: #000; border: 8px solid #1c1c1e; border-radius: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.ig-im-iphone-smartr { border-color: #2c2c2e; box-shadow: 0 0 40px rgba(0,122,255,0.15), 0 30px 60px rgba(0,0,0,0.6); }
.ig-im-iphone-notch { width: 40%; height: 20px; background: #000; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; z-index: 10; }
.ig-im-chat-header { background: rgba(28, 28, 30, 0.8); backdrop-filter: blur(20px); padding: 25px 16px 10px; display: flex; flex-direction: column; align-items: center; border-bottom: 0.5px solid #333; }
.ig-im-contact-icon { width: 32px; height: 32px; background: #444; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; margin-bottom: 4px; }
.ig-im-contact-name { font-weight: 600; font-size: 0.75rem; color: #fff; }
.ig-im-chat-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; background: #000; overflow: hidden; }
.ig-im-bubble { max-width: 85%; padding: 8px 12px; border-radius: 16px; font-size: 0.78rem; line-height: 1.3; position: relative; }
.ig-im-bubble-me { align-self: flex-end; background: #007aff; color: #fff; border-bottom-right-radius: 4px; }
.ig-im-bubble-home { align-self: flex-start; background: #2c2c2e; color: #fff; border-bottom-left-radius: 4px; }
.ig-im-status { font-size: 0.6rem; color: #8e8e93; margin-top: 2px; text-align: right; padding-right: 4px; }
.ig-im-typing { display: flex; gap: 3px; padding: 8px 12px; background: #2c2c2e; border-radius: 16px; width: fit-content; }
.ig-im-dot { width: 4px; height: 4px; background: #666; border-radius: 50%; animation: ig-im-blink 1.4s infinite; }
@keyframes ig-im-blink { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }
.ig-im-iphone-footer { background: rgba(28, 28, 30, 0.8); padding: 8px 12px 20px; border-top: 0.5px solid #333; }
.ig-im-input-bar { background: #000; border: 0.5px solid #38383a; border-radius: 20px; padding: 6px 14px; color: #666; font-size: 0.75rem; }
.ig-im-divider { color: #27272a; font-size: 2rem; font-weight: 900; }
.ig-im-tagline { text-align: center; margin-top: 3rem; }

@media (max-width: 900px) {
    .ig-im-comparison-zip { flex-direction: column; gap: 2rem; }
    .ig-im-divider { transform: rotate(90deg); }
}

/* ===== Screenplay (ig-sp-) ===== */
.ig-sp-header { text-align: center; margin-bottom: 3rem; }
.ig-sp-header h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; letter-spacing: -2px; text-transform: uppercase; }
.ig-sp-header p { font-size: 1.1rem; color: #666; }

.ig-sp-script-container { display: flex; gap: 2rem; width: 100%; perspective: 1000px; justify-content: center; align-items: stretch; }
.ig-sp-side { flex: 1; max-width: 580px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem 2rem; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.8); display: flex; flex-direction: column; font-family: 'Courier Prime', monospace; }

.ig-sp-side-chaos { border-top: 4px solid #ff3e3e; }
.ig-sp-side-smart { border-top: 4px solid #3b82f6; }

.ig-sp-tag-icon { position: absolute; top: 1.5rem; left: 2rem; opacity: 0.2; font-size: 1.5rem; }
.ig-sp-script-header { margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }
.ig-sp-script-header h2 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }
.ig-sp-metadata { font-size: 0.75rem; color: #666; line-height: 1.5; }

.ig-sp-scene-heading { font-weight: 700; color: #eee; margin: 1.5rem 0 0.5rem; text-transform: uppercase; font-size: 0.9rem; }
.ig-sp-action { font-size: 0.85rem; color: #aaa; margin-bottom: 1rem; }
.ig-sp-character { font-weight: 700; color: #fff; text-transform: uppercase; display: block; text-align: center; margin-top: 1rem; }
.ig-sp-parenthetical { font-size: 0.75rem; color: #666; display: block; text-align: center; font-style: italic; }
.ig-sp-dialogue { color: #ddd; display: block; text-align: center; width: 80%; margin: 0.5rem auto 1.5rem; font-size: 0.9rem; }

.ig-sp-scene-divider { border-top: 1px dashed rgba(255,255,255,0.05); margin: 1rem 0; }
.ig-sp-footer-tagline { text-align: center; margin-top: 3rem; }

@media (max-width: 1100px) {
    .ig-sp-script-container { flex-direction: column; align-items: center; }
    .ig-sp-side { width: 100%; }
}

/* ===== Time Saved (ig-ts-) ===== */
.ig-ts-section { position: relative; width: 100%; background: #0A0A0B; border-radius: 40px; padding: 4rem 2rem; overflow: hidden; margin: 2rem 0; }
.ig-ts-glow { position: absolute; width: 60vw; height: 60vh; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }

.ig-ts-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 2; }
.ig-ts-header span { font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 5px; color: #f59e0b; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.ig-ts-header h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; }
.ig-ts-header p { font-size: 1rem; color: #666; margin-top: 1rem; }

.ig-ts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.ig-ts-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 2.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; backdrop-filter: blur(10px); }
.ig-ts-card-red { border-top: 6px solid #ff3b30; }
.ig-ts-card-green { border-top: 6px solid #34C759; }

.ig-ts-card-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; }
.ig-ts-card-red .ig-ts-card-label { color: #ff3b30; }
.ig-ts-card-green .ig-ts-card-label { color: #34C759; }

.ig-ts-hero-box { background: rgba(0,0,0,0.3); width: 100%; border-radius: 20px; padding: 2rem 1rem; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.ig-ts-hero-num { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; }
.ig-ts-card-red .ig-ts-hero-num { color: #ff3b30; }
.ig-ts-card-green .ig-ts-hero-num { color: #34C759; }
.ig-ts-hero-sub { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.5rem; }

.ig-ts-item-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; }
.ig-ts-list-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 1.25rem 0.75rem; border-radius: 12px; }
.ig-ts-list-item h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: #eee; margin-bottom: 0.25rem; }
.ig-ts-list-item p { font-size: 0.7rem; color: #666; line-height: 1.3; }
.ig-ts-list-item b { font-family: 'Space Mono', monospace; font-size: 0.75rem; margin-top: 0.5rem; display: block; }
.ig-ts-card-red b { color: #ff3b30; }
.ig-ts-card-green b { color: #34C759; }

.ig-ts-footer-cta { text-align: center; margin-top: 3rem; }

@media (max-width: 900px) {
    .ig-ts-grid { grid-template-columns: 1fr; }
    .ig-ts-item-list { grid-template-columns: 1fr 1fr; }
}

/* ===== Dumb Building Tax (ig-dbt-) ===== */
.ig-dbt-header { text-align: center; margin-bottom: 3rem; }
.ig-dbt-header h1 { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; }
.ig-dbt-header p { color: #888; font-size: 1.1rem; }

.ig-dbt-comparison-container { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; width: 100%; max-width: 1100px; margin: 0 auto; }
.ig-dbt-receipt { background: #f8f9fa; color: #111; width: 380px; padding: 2.5rem; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; font-family: 'Space Mono', monospace; display: flex; flex-direction: column; }
.ig-dbt-receipt::after { content: ''; position: absolute; bottom: -15px; left: 0; width: 100%; height: 15px; background: radial-gradient(circle, #f8f9fa 70%, transparent 72%); background-size: 20px 20px; background-repeat: repeat-x; }

.ig-dbt-receipt-header { text-align: center; border-bottom: 1px dashed #ccc; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.ig-dbt-brand { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; color: #3b82f6; display: block; margin-bottom: 0.5rem; }
.ig-dbt-receipt-header h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.ig-dbt-meta-info { font-size: 0.7rem; color: #666; margin-bottom: 1rem; line-height: 1.4; }
.ig-dbt-items { flex-grow: 1; }
.ig-dbt-item { display: flex; justify-content: space-between; margin-bottom: 0.7rem; font-size: 0.8rem; }
.ig-dbt-desc { max-width: 200px; text-align: left; }
.ig-dbt-price { font-weight: 700; }
.ig-dbt-divider { border-top: 1px dashed #ccc; margin: 1rem 0; }

.ig-dbt-total-line { display: flex; justify-content: space-between; font-size: 1.4rem; font-weight: 900; padding: 0.5rem 0; border-top: 2px solid #ccc; border-bottom: 2px solid #ccc; }
.ig-dbt-dumb-receipt .ig-dbt-total-line { color: #ff3e3e; }
.ig-dbt-smart-receipt .ig-dbt-total-line { color: #22c55e; }

.ig-dbt-stamp { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg); border: 4px solid #ff3e3e; color: #ff3e3e; padding: 1rem 2rem; font-weight: 900; font-size: 2rem; opacity: 0.15; pointer-events: none; text-transform: uppercase; border-radius: 8px; }
.ig-dbt-smart-receipt .ig-dbt-stamp { border-color: #22c55e; color: #22c55e; }

.ig-dbt-savings-badge { margin-top: 1.5rem; background: #22c55e; color: #fff; padding: 0.75rem; text-align: center; font-weight: 900; font-size: 1.1rem; border-radius: 4px; }
.ig-dbt-footer-tagline { text-align: center; margin-top: 3rem; width: 100%; }

/* ===== Performance Review (ig-pr-) ===== */
.ig-pr-header { text-align: center; margin-bottom: 3rem; }
.ig-pr-header h1 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.ig-pr-appraisal-form { width: 100%; max-width: 850px; background: #fdfdfd; color: #1e293b; padding: 4rem; box-shadow: 0 50px 100px rgba(0,0,0,0.8); position: relative; margin: 0 auto; box-sizing: border-box; }
.ig-pr-form-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid #000; padding-bottom: 2rem; margin-bottom: 3rem; }
.ig-pr-form-title h2 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; text-transform: uppercase; margin: 0; color: #111; }
.ig-pr-form-meta { text-align: right; font-size: 0.85rem; color: #64748b; line-height: 1.6; }
.ig-pr-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.ig-pr-info-item { border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; text-align: left; }
.ig-pr-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #64748b; display: block; margin-bottom: 4px; }
.ig-pr-info-value { font-size: 1.1rem; font-weight: 500; color: #111; }
.ig-pr-ratings-table { width: 100%; border-collapse: collapse; margin-bottom: 3rem; }
.ig-pr-ratings-table th { text-align: left; text-transform: uppercase; font-size: 0.75rem; color: #64748b; padding: 10px 0; border-bottom: 2px solid #000; }
.ig-pr-ratings-table td { padding: 2rem 0; border-bottom: 1px solid #e2e8f0; vertical-align: top; text-align: left; }
.ig-pr-category-name { font-weight: 700; font-size: 1.1rem; color: #111; }
.ig-pr-category-comment { font-size: 0.9rem; color: #64748b; margin-top: 8px; font-style: italic; }
.ig-pr-score-box { display: flex; gap: 10px; align-items: center; }
.ig-pr-number-box { width: 30px; height: 30px; border: 1px solid #e2e8f0; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; font-weight: 700; color: #111; }
.ig-pr-number-box.ig-pr-active { background: #000; color: #fff; border-color: #000; }
.ig-pr-verdict-section { margin-top: 2rem; padding: 2rem; background: #f8fafc; border: 1px dashed #e2e8f0; position: relative; text-align: left; }
.ig-pr-verdict-header { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; color: #111; }
.ig-pr-verdict-text { font-size: 1rem; line-height: 1.6; color: #1e293b; }
.ig-pr-termination-stamp { position: absolute; bottom: 20px; right: 40px; border: 6px double #dc2626; color: #dc2626; padding: 10px 20px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; text-transform: uppercase; transform: rotate(-15deg); opacity: 0.8; }
.ig-pr-footer-cta { text-align: center; margin-top: 3rem; }

@media (max-width: 800px) {
    .ig-pr-appraisal-form { padding: 2rem; }
    .ig-pr-info-grid { grid-template-columns: 1fr; }
    .ig-pr-ratings-table td { padding: 1rem 0; }
}

/* ===== Obituary (ig-obit-) ===== */
.ig-obit-obituary-card { background: #f4f1ea; width: 100%; max-width: 650px; padding: 4rem; border: 12px solid #000; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.5); font-family: 'Libre Baskerville', serif; color: #1a1a1a; margin: 0 auto; box-sizing: border-box; }
.ig-obit-header-obit { text-align: center; margin-bottom: 3rem; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 2rem; }
.ig-obit-header-obit h2 { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; }
.ig-obit-dates { font-size: 1rem; font-style: italic; color: #444; margin-bottom: 2rem; text-align: center; }
.ig-obit-subject-name { font-size: 3rem; font-weight: 900; line-height: 1.1; margin: 1rem 0; text-transform: uppercase; text-align: center; }
.ig-obit-obit-content { font-size: 1.1rem; line-height: 1.8; margin-bottom: 3rem; text-align: justify; }
.ig-obit-survivors { font-weight: 700; margin-top: 2rem; }
.ig-obit-quote-block { text-align: center; font-style: italic; margin: 3rem 0; font-size: 1.3rem; opacity: 0.9; }
.ig-obit-footer-logo { display: flex; justify-content: flex-end; align-items: center; margin-top: 2rem; }
.ig-obit-logo-text { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; color: #1a1a1a; border: 2px solid #1a1a1a; padding: 4px 12px; }

@media (max-width: 600px) {
    .ig-obit-obituary-card { padding: 2rem; border-width: 8px; }
    .ig-obit-subject-name { font-size: 2rem; }
}

/* ══════════════════════════════════════════
   SMART vs AUTOMATED — Brain Split
   ══════════════════════════════════════════ */
.brain-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
}
.brain-left {
  background: #1a1a1a;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.brain-left::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px,
    transparent 1px, transparent 8px
  );
}
.brain-right {
  background: #050f0a;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.brain-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,168,107,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(0,168,107,0.08) 0%, transparent 50%);
}
.brain-side-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}
.brain-left .brain-side-label { color: rgba(255,255,255,0.35); }
.brain-right .brain-side-label { color: #00A86B; }
.brain-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
}
.brain-left .brain-heading { color: rgba(255,255,255,0.7); }
.brain-right .brain-heading { color: #fff; }
.dumb-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.6fr;
  gap: 4px;
  height: 220px;
  position: relative;
}
.dumb-room {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.dumb-room:last-child { grid-column: span 2; }
.room-icon { font-size: 1.4rem; filter: grayscale(1); opacity: 0.5; }
.rule-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
  padding: 2px 5px;
  margin-top: 2px;
}
.smart-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.6fr;
  gap: 4px;
  height: 220px;
  position: relative;
}
.smart-room {
  background: rgba(0,168,107,0.06);
  border: 1px solid rgba(0,168,107,0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.smart-room:last-child { grid-column: span 2; }
.smart-room::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,168,107,0.12) 0%, transparent 70%);
}
.smart-tag {
  background: rgba(0,168,107,0.15);
  border: 1px solid rgba(0,168,107,0.3);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: #00A86B;
  padding: 2px 5px;
  margin-top: 2px;
  position: relative;
}
.neural-svg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.4;
}
.attr-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  padding: 0;
}
.attr-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.4;
}
.brain-left .attr-list li { color: rgba(255,255,255,0.45); }
.brain-right .attr-list li { color: rgba(255,255,255,0.75); }
.attr-list li .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.brain-left .dot { background: rgba(255,255,255,0.2); }
.brain-right .dot { background: #00A86B; box-shadow: 0 0 8px rgba(0,168,107,0.6); }
.brain-divider {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(0,168,107,0.6) 30%, rgba(0,168,107,0.6) 70%, transparent);
  z-index: 10;
}
.brain-tagline {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brain-tagline span { color: #00A86B; }

@media (max-width: 640px) {
  .brain-split { grid-template-columns: 1fr; min-height: auto; }
  .brain-left, .brain-right { padding: 2rem 1.5rem; }
}

/* ===== persona-matrix (ig-ps-) — LIGHT THEME ONLY ===== */
.ig-ps-section {
  background: #FAFAF8 !important; /* Force light bg */
  color: #0F0F0E !important;
}

.ig-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 600px) { .ig-ps-grid { grid-template-columns: 1fr; } }

.ig-ps-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
}
.ig-ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.ig-ps-card-res { background: #0a1a10; color: white; }
.ig-ps-card-com { background: #FFFFFF; color: #0F0F0E; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.ig-ps-card-hosp { background: #0d1520; color: white; }
.ig-ps-card-ind { background: #1a1508; color: white; }

.ig-ps-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.ig-ps-card-res .ig-ps-icon-wrap { background: rgba(0,168,107,0.15); }
.ig-ps-card-com .ig-ps-icon-wrap { background: rgba(0,168,107,0.1); }
.ig-ps-card-hosp .ig-ps-icon-wrap { background: rgba(80,120,255,0.12); }
.ig-ps-card-ind .ig-ps-icon-wrap { background: rgba(255,160,20,0.12); }

.ig-ps-type {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ig-ps-card-res .ig-ps-type, .ig-ps-card-com .ig-ps-type { color: #00A86B; }
.ig-ps-card-hosp .ig-ps-type { color: #7090ff; }
.ig-ps-card-ind .ig-ps-type { color: #ffb030; }

.ig-ps-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ig-ps-pains {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.ig-ps-pains li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.4;
}
.ig-ps-card-res .ig-ps-pains li, .ig-ps-card-hosp .ig-ps-pains li, .ig-ps-card-ind .ig-ps-pains li { color: rgba(255,255,255,0.7); }
.ig-ps-card-com .ig-ps-pains li { color: rgba(0,0,0,0.5); }

.ig-ps-check {
  width: 16px; height: 16px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ig-ps-card-res .ig-ps-check, .ig-ps-card-com .ig-ps-check { background: rgba(0,168,107,0.2); color: #00A86B; }
.ig-ps-card-hosp .ig-ps-check { background: rgba(80,120,255,0.15); color: #7090ff; }
.ig-ps-card-ind .ig-ps-check { background: rgba(255,160,20,0.15); color: #ffb030; }

.ig-ps-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  transition: gap 0.2s ease;
}
.ig-ps-card-res .ig-ps-cta { color: #00A86B; }
.ig-ps-card-com .ig-ps-cta { color: #007844; }
.ig-ps-card-hosp .ig-ps-cta { color: #7090ff; }
.ig-ps-card-ind .ig-ps-cta { color: #ffb030; }
.ig-ps-card:hover .ig-ps-cta { gap: 0.8rem; }

.ig-ps-card::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.05;
}
.ig-ps-card-res::after { background: #00A86B; }
.ig-ps-card-hosp::after { background: #7090ff; }
.ig-ps-card-ind::after { background: #ffb030; }


/* ===== day-timeline (ig-tl-) — LIGHT THEME ONLY ===== */
.ig-tl-section {
  background: #FAFAF8 !important;
  color: #0F0F0E !important;
  padding: 6rem 2rem;
}

.ig-tl-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.ig-tl-sub {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 60ch;
}

.ig-tl-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ig-tl-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #00A86B 5%, #00A86B 95%, transparent);
}

.ig-tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  align-items: stretch;
  opacity: 1; /* Always visible for now, or match reveal patterns */
}

.ig-tl-time {
  text-align: right;
  padding-right: 1.5rem;
  padding-top: 1.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: #00A86B;
  font-weight: 700;
  white-space: nowrap;
}

.ig-tl-content-wrap {
  padding-bottom: 2rem;
  position: relative;
}
.ig-tl-content-wrap::before {
  content: '';
  position: absolute;
  left: -5px; top: 1.75rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #00A86B;
  box-shadow: 0 0 0 3px #FAFAF8, 0 0 0 5px rgba(0,168,107,0.3);
}

.ig-tl-card {
  margin-left: 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ig-tl-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border-color: rgba(0,168,107,0.3);
}
.ig-tl-emoji {
  font-size: 1.8rem;
  line-height: 1;
}
.ig-tl-event {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: #111;
}
.ig-tl-detail {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.ig-tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.75rem;
}
.ig-tl-tag {
  background: rgba(0,168,107,0.1);
  color: #007844;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
}

.ig-tl-stat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 2rem;
}
.ig-tl-stat-card {
  border-radius: 16px;
  padding: 1.75rem;
  color: white;
}
.ig-tl-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.ig-tl-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.ig-tl-stat-desc {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  opacity: 0.7;
}

.ig-tl-note-box {
  background: #F0F2F0;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.ig-tl-note-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #111;
}
.ig-tl-note-body {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* ===== receipt-tax (ig-rc-) — LIGHT THEME ONLY ===== */
.ig-rc-section {
  background: #FAFAF8 !important;
  color: #0F0F0E !important;
  padding: 6rem 2rem;
}

.ig-rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1000px) { .ig-rc-grid { grid-template-columns: 1fr; } }

.ig-rc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.ig-rc-sub {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 50ch;
}

.ig-rc-receipt {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  font-family: 'Space Mono', monospace;
  background: #FFFFFF;
}

.ig-rc-header {
  padding: 1.5rem 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ig-rc-biz {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ig-rc-title {
  font-size: 1.2rem;
  font-weight: 700;
}
.ig-rc-tagline {
  font-size: 0.65rem;
  opacity: 0.6;
}

.ig-rc-sep {
  height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0, currentColor 6px, transparent 6px, transparent 12px);
  opacity: 0.2;
  margin: 0 1.75rem;
}

.ig-rc-body { padding: 1rem 1.75rem; }
.ig-rc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.55rem 0;
  gap: 1rem;
}
.ig-rc-row .ig-rc-label { font-size: 0.7rem; line-height: 1.3; flex: 1; }
.ig-rc-row .ig-rc-amount { font-size: 0.7rem; font-weight: 700; white-space: nowrap; }

.ig-rc-footer {
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 2px dashed rgba(255,255,255,0.1);
}
.ig-rc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ig-rc-total-label { font-size: 0.8rem; font-weight: 700; opacity: 0.7; }
.ig-rc-total-amount { font-size: 1.6rem; font-weight: 700; }

/* Themes */
.ig-rc-bad { background: #1a0a0a; color: white; border: 1px solid rgba(255,107,107,0.1); }
.ig-rc-bad .ig-rc-biz { color: #ff6b6b; }
.ig-rc-bad .ig-rc-total-amount { color: #ff3b30; }
.ig-rc-bad .ig-rc-amount { color: #ff6b6b; }
.ig-rc-bad .ig-rc-footer { border-color: rgba(255,107,107,0.2); }

.ig-rc-good { background: #020f07; color: white; border: 1px solid rgba(0,168,107,0.1); }
.ig-rc-good .ig-rc-biz { color: #00A86B; }
.ig-rc-good .ig-rc-total-amount { color: #00A86B; }
.ig-rc-good .ig-rc-amount { color: #00A86B; }
.ig-rc-good .ig-rc-footer { border-color: rgba(0,168,107,0.2); }

