/* TAOS - Setpoint Talent - Shared Stylesheet */
/* All pages link to this file. Page-specific styles are inline <style> blocks only. */

:root {
  --navy: #0D1524;
  --slate: #131F33;
  --steel: #1A2E4A;
  --orange: #D4691E;
  --orange-light: #DA7F40;
  --cream: #F5F2EC;
  --white: #FFFFFF;
  --gray-light: #E8ECF0;
  --gray-mid: #8A9BAD;
  --text-dark: #0D1524;
  --text-body: #2E3F52;
  --green: #2D6A4F;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', Arial, sans-serif; background: var(--cream); color: var(--text-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,21,36,0.97); backdrop-filter: blur(10px); border-bottom: 2px solid var(--orange); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-wm { display: flex; flex-direction: column; }
.nav-wm-main { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 4px; line-height: 1; }
.nav-wm-main .ta { color: #F5F2EC; } .nav-wm-main .os { color: var(--orange); }
.nav-wm-bar { height: 2px; background: var(--orange); margin: 2px 0 3px; }
.nav-wm-sub { font-family: 'DM Sans', sans-serif; font-size: 8px; color: rgba(245,242,236,0.82); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(245,242,236,0.85); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 9px 22px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: var(--orange-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--orange); }

/* ---- LAYOUT ---- */
.sec { padding: 96px 80px; }
.sec-dark { background: var(--navy); color: #fff; }
.sec-slate { background: var(--slate); color: #fff; }
.sec-cream { background: var(--cream); }
.sec-white { background: var(--white); }
.mxw { max-width: 1200px; margin: 0 auto; }
.ctr { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- TYPE ---- */
.lbl { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.ttl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4vw, 54px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; }
.sub { font-size: 17px; line-height: 1.7; max-width: 600px; font-weight: 400; color: var(--text-body); }
.tag { display: inline-block; background: rgba(198,89,17,0.15); border: 1px solid rgba(198,89,17,0.4); color: var(--orange); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 2px; margin-bottom: 28px; }

/* ---- BUTTONS ---- */
.btn-p { background: var(--orange); color: #fff; border: none; padding: 16px 36px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; text-decoration: none; display: inline-block; }
.btn-p:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-s { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 16px 36px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; text-decoration: none; display: inline-block; }
.btn-s:hover { border-color: var(--orange); color: var(--orange); }
.btn-s-dark { background: transparent; color: var(--navy); border: 1px solid rgba(13,21,36,0.25); padding: 16px 36px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; text-decoration: none; display: inline-block; }
.btn-s-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ---- PILLAR CARDS ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.pc { background: var(--slate); padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.25s; }
.pc:hover { background: #0A1020; }
.pc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; }
.pc:hover::before { transform: scaleX(1); }
.pc-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(255,255,255,0.05); position: absolute; top: 12px; right: 16px; line-height: 1; }
.pc-tag { display: inline-block; background: rgba(198,89,17,0.08); color: var(--orange); font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-bottom: 14px; }
.pc-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #fff; letter-spacing: 1px; margin-bottom: 10px; }
.pc-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.78); }

/* ---- METRICS STRIP ---- */
.mstrip { background: var(--orange); padding: 52px 80px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; overflow: hidden; }
.mstrip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px); }
.sm { position: relative; z-index: 1; text-align: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.2); }
.sm:last-child { border-right: none; }
.sm-val { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: #fff; line-height: 1; letter-spacing: 1px; }
.sm-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-top: 4px; }
.sm-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ---- WHITE PAPER CARDS ---- */
.wp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wpc { background: #fff; border: 1px solid var(--gray-light); padding: 32px; transition: all 0.25s; cursor: pointer; text-decoration: none; display: block; }
.wpc:hover { border-color: var(--orange); transform: translateY(-2px); }
.wpc-type { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.wpc-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--navy); letter-spacing: 1px; margin-bottom: 12px; line-height: 1.1; }
.wpc-desc { font-size: 13px; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
.wpc-cta { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }

/* ---- LEAD CAPTURE ---- */
.lc-form { max-width: 560px; margin: 0 auto; }
.lc-row { display: flex; gap: 12px; }
.lc-inp { flex: 1; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; background: rgba(255,255,255,0.06); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; transition: border 0.2s; }
.lc-inp::placeholder { color: rgba(255,255,255,0.35); }
.lc-inp:focus { border-color: var(--orange); }

/* ---- FOOTER ---- */
.footer { background: var(--navy); border-top: 2px solid rgba(198,89,17,0.25); }
.ft-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 48px; padding: 56px 80px 48px; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start; }
.ft-logo { margin-bottom: 16px; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 240px; }
.ft-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-cta-block { display: flex; flex-direction: column; align-items: flex-start; border-left: 1px solid rgba(255,255,255,0.07); padding-left: 48px; }
.ft-cta-label { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.ft-cta-btn { font-size: 11px; padding: 12px 20px; letter-spacing: 1.5px; white-space: nowrap; }
.ft-cta-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 10px; }
.ft-bot { padding: 20px 80px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bot p { font-size: 11px; color: rgba(255,255,255,0.4); }
.ft-top-link { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s; letter-spacing: 1px; text-transform: uppercase; }
.ft-top-link:hover { color: var(--orange); }
.ft-email { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.ft-email:hover { color: #fff; }

/* ---- PAGE HERO (non-home) ---- */
.page-hero { background: var(--navy); padding: 140px 80px 96px; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(198,89,17,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(198,89,17,0.06) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-glow { position: absolute; left: 50%; top: -100px; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(circle, rgba(198,89,17,0.1) 0%, transparent 65%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }

/* ---- HUB CARDS (home page section links) ---- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.hub-card { background: var(--slate); padding: 44px 36px; position: relative; overflow: hidden; text-decoration: none; display: block; transition: background 0.25s; text-align: center; }
.hub-card:hover { background: #0A1020; }
.hub-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; }
.hub-card:hover::before { transform: scaleX(1); }
.hub-card-tag { display: inline-block; background: rgba(198,89,17,0.1); color: var(--orange); font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-bottom: 14px; }
.hub-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #fff; letter-spacing: 1px; margin-bottom: 12px; }
.hub-card-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 20px; }
.hub-card-link { font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---- BLOCKER RULE ---- */
.blocker-rule { background: var(--slate); border-left: 4px solid var(--orange); padding: 40px 48px; max-width: 840px; margin: 0 auto; }
.blocker-rule .br-lbl { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.blocker-rule h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px,2.5vw,36px); color: #fff; letter-spacing: 1px; margin-bottom: 16px; line-height: 1.05; }
.blocker-rule p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.88); font-weight: 400; }

/* ---- CASE STUDY ---- */
.case-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.cl { background: var(--navy); padding: 80px; color: #fff; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.cl::after { content: 'TAOS'; position: absolute; bottom: -20px; right: -20px; font-family: 'Bebas Neue', sans-serif; font-size: 160px; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.cl h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px,3vw,44px); line-height: 1; margin-bottom: 24px; letter-spacing: 1px; }
.cl p { font-size: 15px; line-height: 1.8; opacity: 0.88; font-weight: 400; margin-bottom: 16px; }
.cr { background: var(--cream); padding: 80px; display: flex; flex-direction: column; justify-content: center; gap: 36px; }
.cstat { border-left: 3px solid var(--orange); padding-left: 24px; }
.cstat-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.cstat-ttl { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cstat-desc { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ---- ARCHETYPE CARDS ---- */
.arch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ac { background: var(--slate); padding: 48px 36px; position: relative; overflow: hidden; transition: background 0.25s; }
.ac:hover { background: #0A1020; }
.ac::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; }
.ac:hover::before { transform: scaleX(1); }
.ac-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: rgba(255,255,255,0.05); position: absolute; top: 12px; right: 20px; line-height: 1; }
.ac-tag { display: inline-block; background: rgba(198,89,17,0.15); color: var(--orange); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 20px; }
.ac-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #fff; letter-spacing: 1px; margin-bottom: 6px; }
.ac-size { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 1px; margin-bottom: 20px; }
.ac-sig { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.ac-pain { padding: 16px; background: rgba(0,0,0,0.25); border-left: 2px solid var(--orange); font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55; margin-bottom: 24px; }
.ac-entry { font-size: 11px; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---- MODAL ---- */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; padding: 40px; }
.modal.open { display: flex; }
.modal-inner { position: relative; max-width: 1100px; width: 100%; }
.modal-inner img { width: 100%; border-radius: 4px; max-height: 85vh; object-fit: contain; }
.modal-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 32px; cursor: pointer; line-height: 1; }
.modal-cap { text-align: center; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; }

/* ---- RESPONSIVE ---- */
@media(max-width:768px) {
  .nav { padding: 0 20px; } .nav-links { display: none; } .hamburger { display: flex; } .nav-backdrop { display: none; position: fixed; inset: 0; top: 64px; background: rgba(0,0,0,0.45); z-index: 998; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px 20px; border-bottom: 2px solid var(--orange); z-index: 999; gap: 0; animation: slideDown 0.25s ease; } @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } .nav-backdrop.open { display: block; }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.08); } .nav-links.open li a { display: block; padding: 14px 0; }
  .sec { padding: 60px 24px; } .ttl { font-size: 32px !important; }
  .page-hero { padding: 100px 24px 60px; }
  .pillars-grid { grid-template-columns: 1fr; } .arch-grid { grid-template-columns: 1fr; }
  .case-layout { grid-template-columns: 1fr; } .cl { padding: 48px 24px; } .cr { padding: 48px 24px; }
  .cl::after { font-size: 80px; }
  .mstrip { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 24px; }
  .sm { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
  .sm:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .wp-grid { grid-template-columns: 1fr; } .hub-grid { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding: 40px 24px 32px; } .ft-brand, .ft-cta-block { grid-column: 1 / -1; } .ft-tagline { max-width: none; } .ft-cta-block { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; } .ft-bot { padding: 20px 24px; }
  .lc-row { flex-direction: column; }
}
@media(min-width:769px) and (max-width:1100px) {
  .sec { padding: 80px 48px; } .page-hero { padding: 120px 48px 80px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .sec { padding: 80px 48px; } .mstrip { padding: 48px; } .ft-inner { padding: 48px 48px 40px; } .ft-bot { padding: 20px 48px; }
  .cl { padding: 56px 48px; } .cr { padding: 56px 48px; }
}
