/* ============================================================
   Build Forward homepage — extras layered on wealthmap-redesign.css
   Studio-level hero, work card, principles, about, footer
   ============================================================ */

/* ── Hero studio variant (centered manifesto) ── */
.hero--studio {
  padding: var(--s-128) 0 var(--s-128);
  text-align: center;
}
.hero-studio-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-studio-title {
  font-family: "Geist", "Inter", sans-serif;
  font-size: var(--t-56);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text);
  margin: 0 auto;
  max-width: 880px;
}
@media (min-width: 720px)  { .hero-studio-title { font-size: var(--t-80); } }
@media (min-width: 1024px) { .hero-studio-title { font-size: var(--t-96); letter-spacing: -0.05em; } }
.hero-studio-title em {
  font-family: "Instrument Serif", "Geist", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-3);
}
.hero-studio-title .word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20%);
}
.hero-studio-title.animate .word {
  animation: wordIn 0.5s var(--ease-out) forwards;
}

.hero-studio-sub {
  margin: var(--s-24) auto 0;
  max-width: 640px;
  font-size: var(--t-18);
  line-height: 1.55;
  color: var(--text-2);
}

.hero--studio .hero-eyebrow {
  margin: 0 auto var(--s-32);
}

/* .btn-studio and .btn-text-studio now live in wealthmap-redesign.css (shared by all pages).
   The homepage hero adds its own top margin via .hero-ctas below. */
.hero-ctas .btn-studio { margin-top: var(--s-32); }

/* ── WORK SECTION — deep WealthMap card ── */
.work-section {
  padding: var(--s-128) 0;
  border-top: 1px solid var(--border);
}

.work-card {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: var(--s-64) var(--s-48);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: center;
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(250, 249, 245, 0.06);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .work-card { grid-template-columns: 1fr; padding: var(--s-48) var(--s-32); gap: var(--s-48); }
}

.work-card-text { min-width: 0; }

.work-app-row {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  margin-bottom: var(--s-24);
}
.work-app-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(81, 89, 254, 0.6);
  overflow: hidden;
}
.work-app-icon img { width: 100%; height: 100%; display: block; object-fit: cover; }
.work-app-icon:has(img) { background: none; box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.5); }
.work-app-name {
  font-size: var(--t-16);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.012em;
}
.work-app-meta {
  font-size: var(--t-13);
  color: var(--text-3);
  margin-top: 2px;
}

.work-card-title {
  font-family: "Geist", "Inter", sans-serif;
  font-size: var(--t-32);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: var(--s-16);
}
@media (min-width: 720px) { .work-card-title { font-size: var(--t-40); letter-spacing: -0.038em; } }
.work-card-title em {
  font-family: "Instrument Serif", "Geist", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-3);
}
.work-card-body {
  font-size: var(--t-16);
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: var(--s-24);
}

.work-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-32) 0;
}
.work-card-features li {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  font-size: var(--t-15);
  color: var(--text-2);
  margin-bottom: var(--s-12);
}

.work-card-ctas {
  display: flex;
  align-items: center;
  gap: var(--s-24);
  flex-wrap: wrap;
}

/* ── PRINCIPLES ── */
.principles {
  padding: var(--s-128) 0;
  border-top: 1px solid var(--border);
}
.principles-title {
  font-family: "Geist", "Inter", sans-serif;
  font-size: var(--t-40);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.05;
  color: var(--text);
}
@media (min-width: 768px) { .principles-title { font-size: var(--t-56); letter-spacing: -0.045em; } }
@media (min-width: 1024px) { .principles-title { font-size: var(--t-64); } }
.principles-title em {
  font-family: "Instrument Serif", "Geist", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-3);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-24);
  max-width: 1080px;
  margin: 0 auto;
}
.principle {
  padding: var(--s-32);
  background: var(--bg-elevated);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(250, 249, 245, 0.05);
  transition: background var(--d-fast) var(--ease);
}
.principle:hover { background: var(--bg-card); }
.principle-num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: var(--t-13);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  margin-bottom: var(--s-16);
}
.principle-title {
  font-family: "Geist", "Inter", sans-serif;
  font-size: var(--t-20);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: var(--s-8);
}
.principle-body {
  font-size: var(--t-15);
  line-height: 1.6;
  color: var(--text-3);
}
@media (max-width: 720px) { .principles-grid { grid-template-columns: 1fr; } }

/* ── ABOUT ── */
.about {
  padding: var(--s-128) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: var(--t-12);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: var(--s-16);
}
.about-title {
  font-family: "Geist", "Inter", sans-serif;
  font-size: var(--t-40);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: var(--s-32);
}
@media (min-width: 768px) { .about-title { font-size: var(--t-56); letter-spacing: -0.045em; } }
@media (min-width: 1024px) { .about-title { font-size: var(--t-64); } }
.about-title em {
  font-family: "Instrument Serif", "Geist", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-3);
}
.about-body {
  font-size: var(--t-17, 17px);
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: var(--s-16);
  text-align: left;
}
.about-signature {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: var(--t-18);
  color: var(--text-3);
  margin-top: var(--s-32);
}

/* Footer studio variant now lives in wealthmap-redesign.css (shared by all pages). */
