/* =====================================================
   HOTLOOP.AI PAGE-SPECIFIC STYLES
   Styles unique to specific pages
   ===================================================== */

/* ===================
   RESEARCH PAGE - Research Overview Card
   =================== */
.research-overview {
  max-width: var(--container-lg);
  width: 100%;
  padding: var(--space-12);
}

.research-intro {
  margin-bottom: var(--space-10);
}

.research-intro .lead-text {
  font-size: var(--text-xl);
  font-weight: var(--weight-book);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.research-intro p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.research-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ===================
   RESEARCH PAGE - Findings Grid
   =================== */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: var(--container-xl);
  width: 100%;
  padding: 0 var(--space-4);
}

.finding-card {
  padding: var(--space-8);
}

.finding-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
}

.finding-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent-coral);
}

.finding-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--accent-pink);
}

.finding-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ===================
   RESEARCH PAGE - Methodology Flow
   =================== */
.methodology-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-4);
  max-width: var(--container-xl);
  width: 100%;
  padding: 0 var(--space-4);
}

.methodology-phase {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.phase-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.phase-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--accent-pink);
}

.phase-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.phase-checkpoint {
  font-size: var(--text-xs);
  color: var(--accent-coral);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
}

.methodology-connector {
  display: none;
  align-items: center;
  color: var(--accent-coral);
  font-size: var(--text-xl);
  opacity: 0.5;
}

@media (min-width: 1200px) {
  .methodology-connector {
    display: flex;
  }
}

/* ===================
   RESEARCH PAGE - Ethics Section
   =================== */
.ethics-content {
  max-width: var(--container-lg);
  width: 100%;
  padding: var(--space-12);
}

.ethics-intro {
  margin-bottom: var(--space-10);
}

.ethics-intro p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.ethics-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.ethics-item h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--accent-pink);
  margin-bottom: var(--space-2);
}

.ethics-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ===================
   RESEARCH PAGE - Report Card
   =================== */
.report-card {
  max-width: var(--container-lg);
  width: 100%;
  padding: var(--space-10);
  display: flex;
  gap: var(--space-10);
  align-items: center;
  flex-wrap: wrap;
}

.report-preview {
  flex-shrink: 0;
}

.report-cover {
  width: 180px;
  height: 240px;
  background: linear-gradient(145deg, var(--accent-pink-20), var(--accent-warm-30));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  text-align: center;
}

.report-cover span {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}

.report-cover span:first-child {
  font-size: var(--text-xs);
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.report-info {
  flex: 1;
  min-width: 280px;
}

.report-info h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.report-meta {
  font-size: var(--text-sm);
  color: var(--accent-coral);
  margin-bottom: var(--space-4);
}

.report-info p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

/* ===================
   RESEARCH PAGE - Speaking List
   =================== */
.speaking-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: var(--container-md);
  width: 100%;
}

.speaking-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  align-items: flex-start;
}

.speaking-year {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-coral);
  min-width: 50px;
}

.speaking-details h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.speaking-details p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

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

.speaking-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.speaking-cta a {
  color: var(--accent-pink);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.speaking-cta a:hover {
  color: var(--accent-coral);
}

/* ===================
   ABOUT PAGE - Content Block
   =================== */
.content-block {
  max-width: var(--container-content);
  width: 100%;
  padding: 0 var(--space-4);
}

.content-block p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block strong {
  color: var(--accent-pink);
  font-weight: var(--weight-semibold);
}

.lead-text {
  font-size: var(--text-xl) !important;
  color: var(--text-primary) !important;
}

/* ===================
   ABOUT PAGE - Principles Grid
   =================== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: var(--container-xl);
  width: 100%;
  padding: 0 var(--space-4);
  margin-top: var(--space-10);
}

.principle-card {
  padding: var(--space-8);
}

.principle-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--accent-pink);
  margin-bottom: var(--space-3);
}

.principle-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ===================
   ABOUT PAGE - Founder Section (Full)
   =================== */
.founder-section-full {
  padding-bottom: var(--space-20);
}

.founder-full {
  max-width: var(--container-lg);
  width: 100%;
  display: flex;
  gap: var(--space-12);
  padding: var(--space-12);
  align-items: flex-start;
  flex-wrap: wrap;
}

.founder-image-wrapper {
  flex-shrink: 0;
}

.founder-image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  color: white;
}

.founder-image-placeholder.large {
  width: 160px;
  height: 160px;
  font-size: var(--text-4xl);
}

.founder-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-round);
  object-fit: cover;
  border: 3px solid var(--accent-coral);
  box-shadow: 0 0 20px rgba(232, 160, 160, 0.3);
}

.founder-image.large {
  width: 160px;
  height: 160px;
  border-width: 4px;
}

.founder-content {
  flex: 1;
  min-width: 280px;
}

.founder-name {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.founder-role {
  font-size: var(--text-base);
  color: var(--accent-coral);
  margin-bottom: var(--space-6);
}

.founder-bio-full p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.credential {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.credential-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.credential-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--accent-pink);
  transition: color var(--transition-fast);
}

.founder-link:hover {
  color: var(--accent-coral);
}

.founder-link svg {
  width: 16px;
  height: 16px;
}

/* ===================
   HOME PAGE - Founder Card (Compact)
   =================== */
.founder-card {
  max-width: var(--container-md);
  width: 100%;
  display: flex;
  gap: var(--space-8);
  padding: var(--space-10);
  align-items: center;
  flex-wrap: wrap;
}

.founder-info {
  flex: 1;
  min-width: 240px;
}

.founder-info .founder-name {
  font-size: var(--text-xl);
}

.founder-info .founder-bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

/* ===================
   HOME PAGE - Research Teaser
   =================== */
.research-teaser {
  padding-bottom: var(--space-20);
}

.research-card {
  max-width: var(--container-md);
  width: 100%;
  padding: var(--space-10);
}

.research-lead {
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.research-highlights {
  list-style: none;
  margin-bottom: var(--space-8);
}

.research-highlights li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.research-highlights li::before {
  content: '✓';
  color: var(--accent-coral);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* ===================
   CASE STUDIES PAGE
   =================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  max-width: var(--container-xl);
  width: 100%;
  padding: 0 var(--space-4);
}

.case-study-card {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.case-study-card.coming-soon {
  opacity: 0.8;
}

.case-study-card.in-development {
  border: 1px solid var(--accent-coral);
}

.case-study-card.in-development .case-placeholder {
  background: linear-gradient(135deg, rgba(232, 160, 160, 0.15), rgba(201, 106, 90, 0.15));
}

.case-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.case-industry {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent-coral);
}

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

.case-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.case-challenge,
.case-solution {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.case-challenge strong,
.case-solution strong {
  color: var(--text-primary);
}

.case-results {
  display: flex;
  gap: var(--space-8);
  margin: var(--space-6) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.case-metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--accent-pink);
}

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

.case-link {
  color: var(--accent-pink);
  font-size: var(--text-sm);
  margin-top: auto;
  transition: color var(--transition-fast);
}

.case-link:hover {
  color: var(--accent-coral);
}

.case-coming {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
}

.case-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  margin: var(--space-4) 0;
}

.placeholder-icon {
  font-size: var(--text-4xl);
  color: var(--accent-pink);
  opacity: 0.3;
}

.placeholder-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  max-width: var(--container-lg);
  width: 100%;
  padding: 0 var(--space-4);
}

.sector-item {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.sector-item h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--accent-pink);
  margin-bottom: var(--space-2);
}

.sector-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ===================
   PORTAL PAGE
   =================== */
.portal-content {
  max-width: 600px;
}

.portal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
}

.portal-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent-pink);
}

.portal-status {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  margin-top: var(--space-8);
  text-align: left;
}

.status-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.status-icon svg {
  width: 100%;
  height: 100%;
  color: var(--accent-coral);
}

.status-content h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.status-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.portal-alternatives {
  margin-top: var(--space-10);
  text-align: center;
}

.portal-alternatives h4 {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.alternative-options {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.alternative-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-glass);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.alternative-link:hover {
  border-color: var(--border-glow);
  color: var(--accent-pink);
}

.alternative-link svg {
  width: 18px;
  height: 18px;
}
