/* TalentForge — Brand Tokens v2 */
:root {
  --navy: #10105d;
  --navy-dark: #0b0b42;
  --orange: #ff3200;
  --orange-hover: #e02b00;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f0f0f0;
  --mid-gray: #e2e2e2;
  --dark-gray: #3a3a3a;
  --text-body: #2a2a2a;
  --text-muted: #666666;
  --text-light: #999999;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --max-w: 1160px;
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Typography - Inter throughout, no Syne */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-body); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-hover); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.page-content { padding-top: 88px; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,50,0,0.25); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--dark-gray); border-color: var(--mid-gray); }
.btn-outline-dark:hover { background: var(--dark-gray); color: var(--white); border-color: var(--dark-gray); }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 60px !important; width: auto !important; max-height: none !important; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.nav-mobile { display: none; background: var(--navy-dark); padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a { display: block; padding: 10px 0; color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* Footer */
.footer { background: var(--dark-gray); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 14px; max-width: 300px; line-height: 1.7; }
.footer-logo { height: 30px; width: auto; margin-bottom: 4px; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* Cards */
.card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-md); padding: 28px; transition: var(--transition); }
.card:hover { border-color: #aaaaaa; box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Accent bar */
.accent-bar { display: block; width: 36px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 18px; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Section backgrounds - greyscale for body divs */
.bg-dark { background: var(--dark-gray); }
.bg-dark h2, .bg-dark h3, .bg-dark p { color: rgba(255,255,255,0.88); }
.bg-dark .eyebrow { color: var(--orange); }
.bg-off-white { background: var(--off-white); }
.bg-light { background: var(--light-gray); }

/* Inline SVG icons */
.industry-item svg, .for-icon svg, .contact-icon svg, .dd-activities svg { vertical-align: middle; }
.industry-item svg { color: var(--navy); }
.for-icon svg { color: var(--navy); }
.contact-icon svg { color: var(--navy); }
.what-list svg { color: var(--orange); }
.dd-activities svg { color: var(--navy); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 48px 0; }
}
