/* Platform page styles extracted from platform/index.html inline style block */

/* HERO SECONDARY BUTTON */
.btn-white {
  background: var(--white); color: var(--surf-navy);
  border: none; font-weight: 700;
}
.btn-white:hover { background: #e8f4f5; color: var(--surf-navy); }

/* BRANDS SECTION */
/* Section wrapper styles in shared.css */

/* FEATURES SECTION */
.features-section { background: linear-gradient(135deg, var(--surf-navy) 0%, var(--otto-blue) 100%); }
.features-section .label { color: var(--surf-sand); }
.features-section .section-title { color: var(--white); }
.features-section .section-sub { color: rgba(255,255,255,0.72); }
.features-header { text-align: center; margin-bottom: 56px; }
.features-header .section-sub { margin: 0 auto; }
.features-categories {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px;
}
.feature-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.feature-category-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--surf-teal);
  margin-bottom: 20px;
  display: flex; gap: 10px; align-items: center;
}
.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
}
.feature-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--gray-700); line-height: 1.5;
}
.feature-list li span { flex-shrink: 0; }
.feature-list li > span + * { flex: 1; }
.fc-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--surf-sand); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.features-cta { text-align: center; }
.feature-category--wide { grid-column: 1 / -1; }
.feature-category--wide .feature-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 40px;
}

/* INFOGRAPHIC SECTION */
.infographics { background: var(--gray-200); }
.infographics .container { max-width: 1400px; }
.infographics-header { text-align: center; margin-bottom: 52px; }
.infographics-header .section-sub { margin: 0 auto; }
.infographics-grid { display: flex; flex-direction: column; gap: 40px; }
.infographics-row { display: grid; grid-template-columns: auto auto; gap: 24px; justify-content: center; align-items: start; }
.infographics-row .infographic-embed { zoom: 0.70; width: 1000px; }
.infographic-embed { margin-bottom: 8px; }
.infographic-caption {
  padding: 16px 24px; border-top: 1px solid var(--gray-200);
  font-family: var(--font-head); font-size: 13px; color: var(--gray-500);
}
.infographic-caption strong { color: var(--gray-700); }

/* LIGHTBOX */
.ig-clickable {
  cursor: zoom-in;
  position: relative;
}
.ig-clickable::after {
  content: 'Click to expand';
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(32,64,147,0.82);
  color: white;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.ig-clickable:hover::after { opacity: 1; }

.ig-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.ig-lightbox.open { display: flex; }
.ig-lightbox-inner {
  background: var(--gray-100);
  border-radius: 14px;
  overflow: auto;
  max-width: 1100px;
  max-height: 92vh;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  cursor: default;
  position: relative;
}
.ig-lightbox-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 22px; line-height: 1;
  color: white;
  background: rgba(0,0,0,0.45);
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.ig-lightbox-close:hover { background: rgba(0,0,0,0.7); }

/* HOW IT WORKS */
/* Base component in shared.css */

/* Phase timeline (platform-specific 6-column variant) */
.hiw-phases-wrap {
  margin-top: 56px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
  padding: 32px; display: grid; grid-template-columns: repeat(6,1fr); gap: 16px;
}
.hiw-phase {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 16px 12px; text-align: center;
}
.hiw-phase .phase-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--surf-sand); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.hiw-phase .phase-name {
  font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 6px;
}
.hiw-phase .phase-detail { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.hiw-note {
  margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.55);
  text-align: center; font-style: italic;
}
.hiw-note strong { color: var(--surf-sand); }

/* COMMUNITIES */
/* Grid and card styles in shared.css */
