/* ============================================================
   About Page Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: #1E293B;
  -webkit-font-smoothing: antialiased;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: white;
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-inner { max-width: 700px; margin: 0 auto; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: white;
  text-decoration: none;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(59,130,246,0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.5);
}

/* --- Sections --- */
.about-section {
  padding: 48px 24px;
}

.about-section.alt {
  background: #F8FAFC;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3B82F6;
  margin-bottom: 12px;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.feature {
  padding: 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.2s;
}

.feature:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 0;
}

/* --- Steps --- */
.steps {
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  margin-bottom: 0;
}

/* --- Sidebar Explanation --- */
.sidebar-explain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.sidebar-card {
  padding: 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.sidebar-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 0;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p { margin-bottom: 28px; }

/* --- Footer --- */
.about-footer {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #1E293B, #334155);
  color: #94A3B8;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* Mobile-only notice: hidden on desktop */
.mobile-notice { display: none; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .mobile-notice {
    display: block;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    color: #475569;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
  }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .about-section h2 { font-size: 26px; }
  .feature-grid, .sidebar-explain { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px 50px; }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner { animation: fadeUp 0.6s ease both; }
.about-section { animation: fadeUp 0.5s ease both; }

/* --- Confidentiality note (sits between hero and case study body) --- */
.confidentiality-note {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 32px 24px;
}
.confidentiality-note-inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 3px solid #3B82F6;
  padding: 6px 0 6px 22px;
}
.confidentiality-note-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 8px;
}
.confidentiality-note-body {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  margin: 0;
}
.confidentiality-note-body + .confidentiality-note-body { margin-top: 8px; }

/* ============================================================
   Pamela Lang shared nav + dark page header
   Mirrored from /Users/pam/Documents/pamela-lang/css/styles.css
   ============================================================ */

body { padding-top: 0; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: #0f0f0f;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #e8e4df;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(232, 217, 196, 0.2);
}
.nav-links.open { display: flex; }
.nav-links a {
  color: rgba(232, 228, 223, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #e8e4df; }
.nav-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  min-width: 48px;
  min-height: 48px;
  color: #e8e4df;
  -webkit-tap-highlight-color: transparent;
  forced-color-adjust: none;
}
.nav-hamburger svg { display: block; width: 24px; height: 24px; stroke: #e8e4df; forced-color-adjust: none; }
.nav-hamburger svg line { stroke: #e8e4df; }
.nav-hamburger .nav-icon-close { display: none; }
.nav-hamburger.open .nav-icon-menu { display: none; }
.nav-hamburger.open .nav-icon-close { display: block; }

.dark-page-header {
  background: #0f0f0f;
  padding: 7rem 2rem 6rem;
  text-align: center;
}
.dark-page-header > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.dark-page-header-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.dark-page-header-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a87c;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.dark-page-header-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: #f4ecd8;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.dark-page-header-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #c9a87c;
}
.dark-page-header-lead {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #8a8580;
  margin: 0 auto 2rem;
  max-width: 520px;
  text-align: center;
}
.dark-page-header-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a87c;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 124, 0.4);
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dark-page-header-cta:hover {
  background: #c9a87c;
  color: #0f0f0f;
  border-color: #c9a87c;
}

@media (max-width: 600px) {
  .dark-page-header { padding: 5rem 1.5rem 4rem; }
  .nav { padding: 1rem 1.25rem; }
}

@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2rem;
    border-bottom: none;
  }
}

/* ============================================================
   Footer + dark closing band (Pamela Lang minimal style)
   ============================================================ */
.footer {
  background: #0f0f0f;
  color: #8a8580;
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.dark-closing { padding: 5rem 2rem 6rem; }
.dark-closing .dark-page-header-title { font-size: clamp(1.85rem, 3.4vw, 2.55rem); }
